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

Make rcfg_cloudsat a HEAP variable #99

Merged
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
1 change: 1 addition & 0 deletions driver/src/cosp2_test.f90
Original file line number Diff line number Diff line change
Expand Up @@ -996,6 +996,7 @@ subroutine construct_cospIN(npoints,ncolumns,nlevels,y)
y%ss_alb(npoints, ncolumns,nlevels))
endif

allocate (y%rcfg_cloudsat)

end subroutine construct_cospIN

Expand Down
2 changes: 1 addition & 1 deletion src/cosp.F90
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ MODULE MOD_COSP
tautot_S_liq, & ! Parasol Liquid water optical thickness, from TOA to SFC
tautot_S_ice, & ! Parasol Ice water optical thickness, from TOA to SFC
fracPrecipIce ! Fraction of precipitation which is frozen (1).
type(radar_cfg) :: &
type(radar_cfg), allocatable :: &
rcfg_cloudsat ! Radar configuration information (CLOUDSAT)
end type cosp_optical_inputs

Expand Down
Loading