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
998ee971
Commit
998ee971
authored
1 year ago
by
RODIER Quentin
Browse files
Options
Downloads
Patches
Plain Diff
Quentin 26/02/2024: modd_cloudparn duplicated since 5.7 (added in PHYEX common). Minors changes
parent
5ad10f01
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/modd_cloudparn.f90
+0
-77
0 additions, 77 deletions
src/MNH/modd_cloudparn.f90
with
0 additions
and
77 deletions
src/MNH/modd_cloudparn.f90
deleted
100644 → 0
+
0
−
77
View file @
5ad10f01
!MNH_LIC Copyright 1994-2014 CNRS, Meteo-France and Universite Paul Sabatier
!MNH_LIC This is part of the Meso-NH software governed by the CeCILL-C licence
!MNH_LIC version 1. See LICENSE, CeCILL-C_V1-en.txt and CeCILL-C_V1-fr.txt
!MNH_LIC for details. version 1.
!-----------------------------------------------------------------
!--------------- special set of characters for RCS information
!-----------------------------------------------------------------
! $Source$ $Revision$
! MASDEV4_7 modd 2006/05/18 13:07:25
!-----------------------------------------------------------------
! ######################
MODULE
MODD_CLOUDPAR_n
! ######################
!
!!**** *MODD_CLOUDPAR$n* - declaration of the model-n dependant Microphysics
!! constants
!!
!! PURPOSE
!! -------
! The purpose of this declarative module is to declare the
! model-n dependant Microhysics constants.
!
!!
!!** IMPLICIT ARGUMENTS
!! ------------------
!! None
!!
!! REFERENCE
!! ---------
!! Book2 of documentation of Meso-NH (MODD_CLOUDPARn)
!!
!! AUTHOR
!! ------
!! E. Richard *Laboratoire d'Aerologie*
!!
!! MODIFICATIONS
!! -------------
!! Original 20/12/95
!! J.-P. Pinty 29/11/02 add C3R5, ICE2, ICE4, ELEC
!!
!-------------------------------------------------------------------------------
!
!* 0. DECLARATIONS
! ------------
!
USE
MODD_PARAMETERS
,
ONLY
:
JPMODELMAX
IMPLICIT
NONE
TYPE
CLOUDPAR_t
!
INTEGER
::
NSPLITR
! Number of required small time step integration
! for rain sedimentation computation
INTEGER
::
NSPLITG
! Number of required small time step integration
! for ice hydrometeor sedimentation computation
!
!
END
TYPE
CLOUDPAR_t
TYPE
(
CLOUDPAR_t
),
DIMENSION
(
JPMODELMAX
),
TARGET
,
SAVE
::
CLOUDPAR_MODEL
INTEGER
,
POINTER
::
NSPLITR
=>
NULL
()
INTEGER
,
POINTER
::
NSPLITG
=>
NULL
()
CONTAINS
SUBROUTINE
CLOUDPAR_GOTO_MODEL
(
KFROM
,
KTO
)
INTEGER
,
INTENT
(
IN
)
::
KFROM
,
KTO
!
! Save current state for allocated arrays
!
! Current model is set to model KTO
NSPLITR
=>
CLOUDPAR_MODEL
(
KTO
)
%
NSPLITR
NSPLITG
=>
CLOUDPAR_MODEL
(
KTO
)
%
NSPLITG
END
SUBROUTINE
CLOUDPAR_GOTO_MODEL
END
MODULE
MODD_CLOUDPAR_n
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