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

PDAF: give character outdir length 100 #256

Merged
merged 2 commits into from
Nov 25, 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
2 changes: 1 addition & 1 deletion bldsva/intf_DA/pdaf/model/clm3_5/enkf_clm_mod.F90
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ module enkf_clm_mod
real(r8) :: dtime ! time step increment (sec)
integer :: ier ! error code

character(c_char),bind(C,name="outdir"),target :: outdir
character(kind=c_char,len=100),bind(C,name="outdir"),target :: outdir

logical :: log_print ! true=> print diagnostics
real(r8) :: eccf ! earth orbit eccentricity factor
Expand Down
2 changes: 1 addition & 1 deletion bldsva/intf_DA/pdaf/model/clm5_0/enkf_clm_mod_5.F90
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ module enkf_clm_mod
real(r8) :: dtime ! time step increment (sec)
integer :: ier ! error code

character(c_char),bind(C,name="outdir"),target :: outdir
character(kind=c_char,len=100),bind(C,name="outdir"),target :: outdir

logical :: log_print ! true=> print diagnostics
real(r8) :: eccf ! earth orbit eccentricity factor
Expand Down
2 changes: 1 addition & 1 deletion bldsva/intf_DA/pdaf/model/eclm/enkf_clm_mod_5.F90
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ module enkf_clm_mod
real(r8) :: dtime ! time step increment (sec)
integer :: ier ! error code

character(c_char),bind(C,name="outdir"),target :: outdir
character(kind=c_char,len=100),bind(C,name="outdir"),target :: outdir

logical :: log_print ! true=> print diagnostics
real(r8) :: eccf ! earth orbit eccentricity factor
Expand Down
Loading