1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
/**
* refl.c - source file for just testing basic optics-related functions.
*
* Copyright (C) 2025 https://optics-design.com
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* See the COPYING file for the full license text.
*/
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
int main(int argc, char *argv[]) {
if (argc != 4){
printf("This program calculates the reflection losses and transmission through nsurfs number of surfaces.\n The program is called either with parameters n1 n2 nsurfs and uses the formula Losses = (((n2-n1)/(n2+n1))**2)**nsurfs.");
return 1;
}
char *pn1, *pn2;
float n1,n2;
int nsurfs;
float singsurfrefl;
n1 = strtof(argv[1], &pn1);
n2 = strtof(argv[2], &pn2);
nsurfs = atoi(argv[3]);
// nsurfs = strtof(argv[3], &pnsurfs);
if ( *pn1||*pn2||!nsurfs) {
printf("Error! You did not provide n1 n2 nsurfs as numbers.");
return 1;
}
singsurfrefl = pow((n2-n1)/(n2+n1),2);
printf("Single Surface Loss: %.2f%\nSingle Surface Transmission:%.2f%\n%d-Surface Loss:%.2f%\n%d-Surface Transmission:%.2f%\n",100*singsurfrefl,100*(1-singsurfrefl),nsurfs,100*(1-pow(1-singsurfrefl,nsurfs)),nsurfs,100*pow(1-singsurfrefl,nsurfs));
return 0;
}
|