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
RODIER Quentin
Méso-NH code
Commits
3496b96d
Commit
3496b96d
authored
8 years ago
by
Juan Escobar
Browse files
Options
Downloads
Patches
Plain Diff
Juan 12/07/2016 : add test on NRIMY & change the one on NRIMX with >=
parent
7717ffe6
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/MNH/spawn_model2.f90
+10
-3
10 additions, 3 deletions
src/MNH/spawn_model2.f90
with
10 additions
and
3 deletions
src/MNH/spawn_model2.f90
+
10
−
3
View file @
3496b96d
...
...
@@ -187,6 +187,7 @@ END MODULE MODI_SPAWN_MODEL2
!! Modification 05/02/2015 (M.Moge) parallelization of SPAWNING
!! J.Escobar : 15/09/2015 : WENO5 & JPHEXT <> 1
!! J.Escobar 02/05/2016 : test ZZS_MAX in //
!! J.Escobar 12/07/2016 : add test on NRIMY & change the one on NRIMX with >=
!-------------------------------------------------------------------------------
!
!* 0. DECLARATIONS
...
...
@@ -622,9 +623,15 @@ IF ( .NOT. L2D ) THEN
ELSE
NRIMY
=
0
END
IF
IF
(
NRIMX
==
IIU
/
2-1
)
THEN
! Error ! this case is not supported - it should be, but there is a bug
WRITE
(
*
,
*
)
"Error : The size of the LB zone is too big for the size of the subdomains"
WRITE
(
*
,
*
)
"Try with less cores, a smaller LB size, or a bigger grid"
IF
(
NRIMX
>=
IIU
/
2-1
)
THEN
! Error ! this case is not supported - it should be, but there is a bug
WRITE
(
*
,
*
)
"Error : The size of the LBX zone is too big for the size of the subdomains"
WRITE
(
*
,
*
)
"Try with less cores, a smaller LBX size, or a bigger grid in X "
CALL
ABORT
STOP
ENDIF
IF
(
(
.NOT.
L2D
)
.AND.
(
NRIMY
>=
IJU
/
2-1
)
)
THEN
! Error ! this case is not supported - it should be, but there is a bug
WRITE
(
*
,
*
)
"Error : The size of the LBY zone is too big for the size of the subdomains"
WRITE
(
*
,
*
)
"Try with less cores, a smaller LBY size, or a bigger grid in Y "
CALL
ABORT
STOP
ENDIF
...
...
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