Gaussian_power
- plasmapy.formulary.laser.Gaussian_power( ) Annotated[Quantity, Unit('W')][source]
Calculate the total power of a Gaussian beam \(P_0\) from the intensity \(I\) and the beam waist radius \(w_0\).
The total power of a Gaussian beam is calculated using:
\[P_0=\frac{1}{2}I_0 \pi w_0^2,\]where \(w_0\) is the beam waist radius and \(I_0\) is the intensity of the beam.
- Parameters:
- Returns:
P_0 – The total power of the Gaussian beam for the given intensity and spot size.
- Return type:
Notes
For details, see Gaussian beam.
Examples
>>> import astropy.units as u >>> Gaussian_power(1e18 * u.watt / u.cm**2, 1 * u.um) # Total beam power <Quantity 1.57079633e+10 W>