-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Patch the CMEPS history output so that it can be used. Currently hist…
…ory output is full of _fillValue, as the implementation of history output with type float is incomplete. Change to type double.
- Loading branch information
1 parent
6f9085f
commit ac15b5f
Showing
2 changed files
with
16 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
diff --git a/mediator/med_phases_history_mod.F90 b/mediator/med_phases_history_mod.F90 | ||
index 5f150a4b..97864ec6 100644 | ||
--- a/mediator/med_phases_history_mod.F90 | ||
+++ b/mediator/med_phases_history_mod.F90 | ||
@@ -1300,7 +1300,7 @@ contains | ||
call med_io_write(auxcomp%files(nf)%io_file, is_local%wrap%FBimp(compid,compid), & | ||
whead(1), wdata(1), nx, ny, nt=auxcomp%files(nf)%nt, & | ||
pre=trim(compname(compid))//'Imp', flds=auxcomp%files(nf)%flds, & | ||
- use_float=.true., rc=rc) | ||
+ use_float=.false., rc=rc) | ||
if (ChkErr(rc,__LINE__,u_FILE_u)) return | ||
|
||
! end definition phase |