numerical integral solve for laser energy,S which is a function of z,t?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Shahriar Shafin
am 25 Nov. 2023
Kommentiert: Shahriar Shafin
am 26 Nov. 2023
How to solve the spatiotemporal integral for the absorbed laser energy,S(all the other values J,L,tp are known)??
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1551917/image.jpeg)
2 Kommentare
Akzeptierte Antwort
Walter Roberson
am 25 Nov. 2023
syms J_abs L_op t_p t z
ln2 = log(sym(2));
Pi = sym(pi);
S(z,t) = 2/(sqrt(Pi/ln2)) * J_abs / (L_op * t_p) * exp(-z/L_op) * exp(-(4*ln2) * (t - 2*t_p).^2/t_p.^2)
syms z_min z_max t_min t_max real
spatiotemporal_integral = int(int(S, t, t_min, t_max), z, z_min, z_max)
simplify(spatiotemporal_integral, 'steps', 20)
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Particle & Nuclear Physics finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!