Returns the air density [kg/m^3].
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(domain_type), | intent(in) | :: | self | Domain instance |
Air density [kg/m^3]
pure function getAirDensity(self) result(air_density)
!! Returns the air density [kg/m^3].
class(domain_type),intent(in) :: self
!! Domain instance
real(kind=rk),dimension(:,:),allocatable :: air_density
!! Air density [kg/m^3]
air_density = self % spectrum % getAirDensity()
endfunction getAirDensity