MONC
Functions/Subroutines
set_aer.F90 File Reference

Go to the source code of this file.

Functions/Subroutines

subroutine set_aer (control, atm, dimen, spectrum, aer)
 

Function/Subroutine Documentation

◆ set_aer()

subroutine set_aer ( type(strctrl), intent(in)  control,
type(stratm), intent(in)  atm,
type(strdim), intent(in)  dimen,
type (strspecdata), intent(in)  spectrum,
type(straer), intent(out)  aer 
)

Definition at line 10 of file set_aer.F90.

14 
15 USE rad_pcf
16 USE def_control, ONLY: strctrl
17 USE def_atm, ONLY: stratm
18 USE def_spectrum, ONLY: strspecdata
19 USE def_dimen, ONLY: strdim
20 USE def_aer, ONLY: straer, allocate_aer, allocate_aer_prsc
21 
22 IMPLICIT NONE
23 
24 ! Control options:
25 TYPE(StrCtrl), INTENT(IN) :: control
26 
27 ! Atmospheric properties:
28 TYPE(StrAtm), INTENT(IN) :: atm
29 
30 ! Dimensions:
31 TYPE(StrDim), INTENT(IN) :: dimen
32 
33 ! Spectral data:
34 TYPE (StrSpecData), INTENT(IN) :: spectrum
35 
36 ! Boundary conditions:
37 TYPE(StrAer), INTENT(OUT) :: aer
38 
39 call allocate_aer(aer, dimen, spectrum)
40 CALL allocate_aer_prsc(aer, dimen, spectrum)
41 
42 
Here is the caller graph for this function: