Description Usage Arguments Value Author(s) See Also Examples
View source: R/pkgAtmosphere.R
Calculation of atmospheric molecular backscatter coefficient at specified pressure, temperature and wavelength.
1 | betamol(P, T, lambda = 1064)
|
P |
Pressure in hPa. can be scalar, vector or matrix of the same dimension of T. |
T |
Temperature in °k. can be scalar, vector or matrix of the same dimension of P. |
lambda |
Scalar value in nm. It represent the wavelength of incident light. |
Return according to the dimension of P and T returns the volume backscatter coefficient [1/m 1/sr] for the specified wavelength lambda.
Gionata Biavati
standard_atmosphere
betamol_standard
1 2 3 4 5 6 7 8 9 10 | ##
lambda=1064 #nm
z<-10*(0:1000)
bm<-betamol(standard_atmosphere(z,vout=2,T0=T0,P0=P0,R0=R0)/100,
standard_atmosphere(z,vout=1,T0=T0,P0=P0,R0=R0),
lambda=lambda)
plot(bm,z,type='l',col=4,lwd=3,
xlab='Volume Backscatter Coefficient [1/(m sr)]',
ylab='Altitude [m]',
main ='Standard profile of volume backscatter coefficient')
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.