numerical integral solve for laser energy,S which is a function of z,t?

1 回表示 (過去 30 日間)
Shahriar Shafin
Shahriar Shafin 2023 年 11 月 25 日
コメント済み: Shahriar Shafin 2023 年 11 月 26 日
How to solve the spatiotemporal integral for the absorbed laser energy,S(all the other values J,L,tp are known)??
  2 件のコメント
Dyuman Joshi
Dyuman Joshi 2023 年 11 月 25 日
Solve what? I don't see an equation. Just an expression/function.
John D'Errico
John D'Errico 2023 年 11 月 25 日
I don't even see an integral. The answer is therefore 42.

サインインしてコメントする。

採用された回答

Walter Roberson
Walter Roberson 2023 年 11 月 25 日
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)
S(z, t) = 
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)
spatiotemporal_integral = 
simplify(spatiotemporal_integral, 'steps', 20)
ans = 

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeParticle & Nuclear Physics についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by