Split up files

This commit is contained in:
2023-03-19 13:45:34 +04:00
parent 55c80094b8
commit 8958bf5204
8 changed files with 153 additions and 121 deletions

7
Matlab/intensity.m Normal file
View File

@@ -0,0 +1,7 @@
load_constants
function g = gauss(r)
A = (1-exp(-2*r_max.^2 / w0^2));
I0 = 2*P / (pi * w0^2 * A);
g = I0 * exp(-2 * r.^2 / w0^2); % Gaussian TEM00 beam
end