lmie.sct: Scattering coeficients in the Lorentz-Mie

Description Usage Arguments Details Value Examples

Description

Scattering coeficients in the Lorentz-Mie

Usage

1
lmie.sct(m, x, dist = FALSE)

Arguments

m

Ratio of refraction indices.

x

Form factor

dist

If is to distinguish contributions of a_n and b_n.

Details

Scattering and Extinction coefficients.

Value

Extinction and Scattering coefficients Qsca and Qext if dist=FALSE. If dist=TRUE, so the contribution of a_n and b_n are distinguished in Q_{sca}\to Q_{sca}+Q_{scb} and Q_{ext}\to Q_{exa}+Q_{exb}.

Examples

1
2
3
4
5
6
7
8
9
dx<-.1   # FAST VALUE
#dx<-.001 # HIGH RESOLUTION
m<-1.33
x<-seq(dx,50,dx)
u<-lmie.sct(m,x)
v<-lmie.sct(m,x,dist=TRUE)
plot(x,u$Qsca,type='l')
points(x,v$Qsca,type='l',col='red')
points(x,v$Qscb,type='l',col='blue')

wendellopes/rvswf documentation built on May 4, 2019, 4:19 a.m.