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
e5be3acc
Commit
e5be3acc
authored
3 years ago
by
Antoine Cyril David Hoffmann
Browse files
Options
Downloads
Patches
Plain Diff
comments and correction of Sapj computed before dnjs
parent
402b540e
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/inital.F90
+11
-9
11 additions, 9 deletions
src/inital.F90
with
11 additions
and
9 deletions
src/inital.F90
+
11
−
9
View file @
e5be3acc
...
...
@@ -25,21 +25,20 @@ SUBROUTINE inital
!!!!!! Set the moments arrays Nepj, Nipj and phi!!!!!!
IF
(
RESTART
)
THEN
IF
(
my_id
.EQ.
0
)
WRITE
(
*
,
*
)
'Load moments'
CALL
load_moments
CALL
load_moments
! get N_0
IF
(
my_id
.EQ.
0
)
WRITE
(
*
,
*
)
'Init phi with Poisson'
CALL
poisson
CALL
MPI_BARRIER
(
MPI_COMM_WORLD
,
ierr
);
CALL
poisson
! compute phi_0=phi(N_0)
ELSE
IF
(
INIT_NOISY_PHI
)
THEN
IF
(
my_id
.EQ.
0
)
WRITE
(
*
,
*
)
'Init noisy phi'
CALL
init_phi
CALL
init_phi
! init noisy phi_0, N_0 = 0
ELSE
IF
(
my_id
.EQ.
0
)
WRITE
(
*
,
*
)
'Init noisy moments and ghosts'
CALL
init_moments
CALL
init_moments
! init noisy N_0
IF
(
my_id
.EQ.
0
)
WRITE
(
*
,
*
)
'Init phi with Poisson'
CALL
poisson
CALL
poisson
! get phi_0 = phi(N_0)
ENDIF
ENDIF
...
...
@@ -52,15 +51,18 @@ SUBROUTINE inital
!!!!!! Set Sepj, Sipj and dnjs coeff table !!!!!!
IF
(
NON_LIN
)
THEN
;
IF
(
my_id
.EQ.
0
)
WRITE
(
*
,
*
)
'Init Sapj'
CALL
compute_Sapj
! WRITE(*,*) 'Building Dnjs table'
WRITE
(
*
,
*
)
'Building Dnjs table'
CALL
build_dnjs_table
IF
(
my_id
.EQ.
0
)
WRITE
(
*
,
*
)
'Init Sapj'
CALL
compute_Sapj
! compute S_0 = S(phi_0,N_0)
ENDIF
!!!!!! Load the COSOlver collision operator coefficients !!!!!!
IF
(
ABS
(
CO
)
.GT.
1
)
THEN
CALL
load_COSOlver_mat
! Compute collision
CALL
compute_TColl
! compute C_0 = C(N_0)
ENDIF
END
SUBROUTINE
inital
...
...
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