Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
Méso-NH code
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Méso-NH
Méso-NH code
Commits
b055e9ed
Commit
b055e9ed
authored
8 years ago
by
WAUTELET Philippe
Browse files
Options
Downloads
Patches
Plain Diff
Philippe 02/09/2016: added LBAK_BEG and LBAK_END to force backup at 1st and last timestep
parent
7eac56ea
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/MNH/modd_fmout.f90
+4
-0
4 additions, 0 deletions
src/MNH/modd_fmout.f90
src/MNH/modn_fmout.f90
+1
-1
1 addition, 1 deletion
src/MNH/modn_fmout.f90
src/MNH/set_grid.f90
+15
-1
15 additions, 1 deletion
src/MNH/set_grid.f90
with
20 additions
and
2 deletions
src/MNH/modd_fmout.f90
+
4
−
0
View file @
b055e9ed
...
@@ -47,6 +47,10 @@ USE MODD_PARAMETERS
...
@@ -47,6 +47,10 @@ USE MODD_PARAMETERS
!
!
IMPLICIT
NONE
IMPLICIT
NONE
!
!
LOGICAL
,
SAVE
::
LBAK_BEG
=
.FALSE.
! Force a backup at the first timestep
! of the segment for all models
LOGICAL
,
SAVE
::
LBAK_END
=
.FALSE.
! Force a backup at the last timestep
! of the segment for all models
REAL
,
SAVE
,
ALLOCATABLE
,
DIMENSION
(:,:)
::
XBAK_TIME
REAL
,
SAVE
,
ALLOCATABLE
,
DIMENSION
(:,:)
::
XBAK_TIME
! XBAK_TIME(m,i) array of
! XBAK_TIME(m,i) array of
! the increments in seconds from the beginning of the segment to the
! the increments in seconds from the beginning of the segment to the
...
...
This diff is collapsed.
Click to expand it.
src/MNH/modn_fmout.f90
+
1
−
1
View file @
b055e9ed
...
@@ -48,6 +48,6 @@ USE MODD_FMOUT
...
@@ -48,6 +48,6 @@ USE MODD_FMOUT
!
!
IMPLICIT
NONE
IMPLICIT
NONE
!
!
NAMELIST
/
NAM_FMOUT
/
XBAK_TIME
,
NBAK_STEP
NAMELIST
/
NAM_FMOUT
/
LBAK_BEG
,
LBAK_END
,
XBAK_TIME
,
NBAK_STEP
!
!
END
MODULE
MODN_FMOUT
END
MODULE
MODN_FMOUT
This diff is collapsed.
Click to expand it.
src/MNH/set_grid.f90
+
15
−
1
View file @
b055e9ed
...
@@ -575,13 +575,21 @@ DO IMI = 1, NMODEL
...
@@ -575,13 +575,21 @@ DO IMI = 1, NMODEL
END
IF
END
IF
END
DO
END
DO
!
!
!* 2.3.2 Group all backups in a common form
!* 2.3.2 Group all backups in a common form and add backups at beginning and end if requested
!
IF
(
LBAK_BEG
)
IBAK_NUMB
=
IBAK_NUMB
+
1
IF
(
LBAK_END
)
IBAK_NUMB
=
IBAK_NUMB
+
1
!
!
ALLOCATE
(
IBAK_STEP
(
IBAK_NUMB
))
ALLOCATE
(
IBAK_STEP
(
IBAK_NUMB
))
IBAK_STEP
(:)
=
NNEGUNDEF
IBAK_STEP
(:)
=
NNEGUNDEF
!
!
IBAK_NUMB
=
0
IBAK_NUMB
=
0
!
!
IF
(
LBAK_BEG
)
THEN
IBAK_NUMB
=
IBAK_NUMB
+
1
IBAK_STEP
(
IBAK_NUMB
)
=
1
! 1 is the 1st step number
END
IF
!
DO
JOUT
=
1
,
JPOUTMAX
DO
JOUT
=
1
,
JPOUTMAX
IF
(
XBAK_TIME
(
IMI
,
JOUT
)
>=
0.
)
THEN
IF
(
XBAK_TIME
(
IMI
,
JOUT
)
>=
0.
)
THEN
IBAK_NUMB
=
IBAK_NUMB
+
1
IBAK_NUMB
=
IBAK_NUMB
+
1
...
@@ -596,6 +604,12 @@ DO IMI = 1, NMODEL
...
@@ -596,6 +604,12 @@ DO IMI = 1, NMODEL
END
IF
END
IF
END
DO
END
DO
!
!
IF
(
LBAK_END
)
THEN
IBAK_NUMB
=
IBAK_NUMB
+
1
IBAK_STEP
(
IBAK_NUMB
)
=
NINT
(
XSEGLEN
/
DYN_MODEL
(
IMI
)
%
XTSTEP
)
+1
IF
(
IMI
==
1
)
IBAK_STEP
(
IBAK_NUMB
)
=
IBAK_STEP
(
IBAK_NUMB
)
-
ISUP
END
IF
!
!* 2.3.2 Find and remove duplicated entries
!* 2.3.2 Find and remove duplicated entries
!
!
DO
JOUT
=
1
,
IBAK_NUMB
DO
JOUT
=
1
,
IBAK_NUMB
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment