Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add optional attribute for variables where necessary #79

Merged
merged 2 commits into from
May 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions lndp_apply_perts.F90
Original file line number Diff line number Diff line change
Expand Up @@ -74,15 +74,15 @@ subroutine lndp_apply_perts(blksz, lsm, lsm_noah, lsm_ruc, lsm_noahmp, iopt_dveg
real(kind=kind_phys), intent(in) :: smcmin(:)

! intent(inout)
real(kind=kind_phys), intent(inout) :: smc(:,:,:)
real(kind=kind_phys), intent(inout) :: slc(:,:,:)
real(kind=kind_phys), intent(inout) :: stc(:,:,:)
real(kind=kind_phys), intent(inout) :: vfrac(:,:)
real(kind=kind_phys), intent(inout) :: snoalb(:,:)
real(kind=kind_phys), intent(inout) :: alnsf(:,:)
real(kind=kind_phys), intent(inout) :: alnwf(:,:)
real(kind=kind_phys), intent(inout) :: semis(:,:)
real(kind=kind_phys), intent(inout) :: zorll(:,:)
real(kind=kind_phys), intent(inout), optional :: smc(:,:,:)
real(kind=kind_phys), intent(inout), optional :: slc(:,:,:)
real(kind=kind_phys), intent(inout), optional :: stc(:,:,:)
real(kind=kind_phys), intent(inout), optional :: vfrac(:,:)
real(kind=kind_phys), intent(inout), optional :: snoalb(:,:)
real(kind=kind_phys), intent(inout), optional :: alnsf(:,:)
real(kind=kind_phys), intent(inout), optional :: alnwf(:,:)
real(kind=kind_phys), intent(inout), optional :: semis(:,:)
real(kind=kind_phys), intent(inout), optional :: zorll(:,:)

! intent(out)
integer, intent(out) :: ierr
Expand Down
22 changes: 11 additions & 11 deletions stochastic_physics.F90
Original file line number Diff line number Diff line change
Expand Up @@ -56,11 +56,11 @@ subroutine init_stochastic_physics(levs, blksz, dtp, sppt_amp, input_nml_file_in
real(kind=kind_phys), intent(in) :: ak(:), bk(:)
logical, intent(out) :: use_zmtnblck_out
integer, intent(out) :: skeb_npass_out
character(len=3), dimension(:), intent(out) :: lndp_var_list_out
real(kind=kind_phys), dimension(:), intent(out) :: lndp_prt_list_out
character(len=10), dimension(:), intent(out) :: spp_var_list_out
real(kind=kind_phys), dimension(:), intent(out) :: spp_prt_list_out
real(kind=kind_phys), dimension(:), intent(out) :: spp_stddev_cutoff_out
character(len=3), optional, dimension(:), intent(out) :: lndp_var_list_out
real(kind=kind_phys), optional, dimension(:), intent(out) :: lndp_prt_list_out
character(len=10), optional, dimension(:), intent(out) :: spp_var_list_out
real(kind=kind_phys), optional, dimension(:), intent(out) :: spp_prt_list_out
real(kind=kind_phys), optional, dimension(:), intent(out) :: spp_stddev_cutoff_out


! Local variables
Expand Down Expand Up @@ -356,12 +356,12 @@ subroutine run_stochastic_physics(levs, kdt, fhour, blksz, sppt_wts, shum_wts, s
integer, intent(in) :: levs, kdt
real(kind=kind_phys), intent(in) :: fhour
integer, intent(in) :: blksz(:)
real(kind=kind_phys), intent(inout) :: sppt_wts(:,:,:)
real(kind=kind_phys), intent(inout) :: shum_wts(:,:,:)
real(kind=kind_phys), intent(inout) :: skebu_wts(:,:,:)
real(kind=kind_phys), intent(inout) :: skebv_wts(:,:,:)
real(kind=kind_phys), intent(inout) :: sfc_wts(:,:,:)
real(kind=kind_phys), intent(inout) :: spp_wts(:,:,:,:)
real(kind=kind_phys), intent(inout), optional :: sppt_wts(:,:,:)
real(kind=kind_phys), intent(inout), optional :: shum_wts(:,:,:)
real(kind=kind_phys), intent(inout), optional :: skebu_wts(:,:,:)
real(kind=kind_phys), intent(inout), optional :: skebv_wts(:,:,:)
real(kind=kind_phys), intent(inout), optional :: sfc_wts(:,:,:)
real(kind=kind_phys), intent(inout), optional :: spp_wts(:,:,:,:)
integer, intent(in) :: nthreads

real(kind_dbl_prec),allocatable :: tmp_wts(:,:),tmpu_wts(:,:,:),tmpv_wts(:,:,:),tmpl_wts(:,:,:),tmp_spp_wts(:,:,:)
Expand Down