Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Gyacomo
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
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Antoine Cyril David Hoffmann
Gyacomo
Commits
1ac9de43
Commit
1ac9de43
authored
4 years ago
by
Antoine Cyril David Hoffmann
Browse files
Options
Downloads
Patches
Plain Diff
closure and kernel model flags
parent
b82803a0
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/model_mod.F90
+5
-2
5 additions, 2 deletions
src/model_mod.F90
with
5 additions
and
2 deletions
src/model_mod.F90
+
5
−
2
View file @
1ac9de43
...
@@ -6,7 +6,8 @@ MODULE model
...
@@ -6,7 +6,8 @@ MODULE model
PRIVATE
PRIVATE
INTEGER
,
PUBLIC
,
PROTECTED
::
CO
=
0
! Collision Operator
INTEGER
,
PUBLIC
,
PROTECTED
::
CO
=
0
! Collision Operator
LOGICAL
,
PUBLIC
,
PROTECTED
::
DK
=
0
! Drift kinetic model
INTEGER
,
PUBLIC
,
PROTECTED
::
CLOS
=
0
! Truncation method
INTEGER
,
PUBLIC
,
PROTECTED
::
KERN
=
0
! Kernel model
LOGICAL
,
PUBLIC
,
PROTECTED
::
NON_LIN
=
.true.
! To turn on non linear bracket term
LOGICAL
,
PUBLIC
,
PROTECTED
::
NON_LIN
=
.true.
! To turn on non linear bracket term
REAL
(
dp
),
PUBLIC
,
PROTECTED
::
mu
=
0._dp
! Hyperdiffusivity coefficient (for num. stability)
REAL
(
dp
),
PUBLIC
,
PROTECTED
::
mu
=
0._dp
! Hyperdiffusivity coefficient (for num. stability)
REAL
(
dp
),
PUBLIC
,
PROTECTED
::
nu
=
1._dp
! Collision frequency
REAL
(
dp
),
PUBLIC
,
PROTECTED
::
nu
=
1._dp
! Collision frequency
...
@@ -44,7 +45,7 @@ CONTAINS
...
@@ -44,7 +45,7 @@ CONTAINS
USE
prec_const
USE
prec_const
IMPLICIT
NONE
IMPLICIT
NONE
NAMELIST
/
MODEL_PAR
/
CO
,
DK
,
NON_LIN
,
mu
,
nu
,
tau_e
,
tau_i
,
sigma_e
,
sigma_i
,
&
NAMELIST
/
MODEL_PAR
/
CO
,
CLOS
,
KERN
,
NON_LIN
,
mu
,
nu
,
tau_e
,
tau_i
,
sigma_e
,
sigma_i
,
&
q_e
,
q_i
,
eta_n
,
eta_T
,
eta_B
,
lambdaD
q_e
,
q_i
,
eta_n
,
eta_T
,
eta_B
,
lambdaD
READ
(
lu_in
,
model_par
)
READ
(
lu_in
,
model_par
)
...
@@ -88,6 +89,8 @@ CONTAINS
...
@@ -88,6 +89,8 @@ CONTAINS
INTEGER
,
INTENT
(
in
)
::
fidres
INTEGER
,
INTENT
(
in
)
::
fidres
CHARACTER
(
len
=
256
),
INTENT
(
in
)
::
str
CHARACTER
(
len
=
256
),
INTENT
(
in
)
::
str
CALL
attach
(
fidres
,
TRIM
(
str
),
"CO"
,
CO
)
CALL
attach
(
fidres
,
TRIM
(
str
),
"CO"
,
CO
)
CALL
attach
(
fidres
,
TRIM
(
str
),
"CLOS"
,
CLOS
)
CALL
attach
(
fidres
,
TRIM
(
str
),
"KERN"
,
KERN
)
CALL
attach
(
fidres
,
TRIM
(
str
),
"NON_LIN"
,
NON_LIN
)
CALL
attach
(
fidres
,
TRIM
(
str
),
"NON_LIN"
,
NON_LIN
)
CALL
attach
(
fidres
,
TRIM
(
str
),
"nu"
,
nu
)
CALL
attach
(
fidres
,
TRIM
(
str
),
"nu"
,
nu
)
CALL
attach
(
fidres
,
TRIM
(
str
),
"tau_e"
,
tau_e
)
CALL
attach
(
fidres
,
TRIM
(
str
),
"tau_e"
,
tau_e
)
...
...
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