restart_vars.F90 Source File


This file depends on

sourcefile~~restart_vars.f90~~EfferentGraph sourcefile~restart_vars.f90 restart_vars.F90 sourcefile~globals.f90 globals.F90 sourcefile~restart_vars.f90->sourcefile~globals.f90

Files dependent on this one

sourcefile~~restart_vars.f90~~AfferentGraph sourcefile~restart_vars.f90 restart_vars.F90 sourcefile~mhd3d.f90 mhd3d.F90 sourcefile~mhd3d.f90->sourcefile~restart_vars.f90 sourcefile~restart.f90 restart.F90 sourcefile~mhd3d.f90->sourcefile~restart.f90 sourcefile~mhd3d_minimize.f90 mhd3d_minimize.F90 sourcefile~mhd3d.f90->sourcefile~mhd3d_minimize.f90 sourcefile~restart.f90->sourcefile~restart_vars.f90 sourcefile~gvec_post.f90 gvec_post.F90 sourcefile~gvec_post.f90->sourcefile~mhd3d.f90 sourcefile~gvec_post.f90->sourcefile~restart.f90 sourcefile~mhd3d_minimize.f90->sourcefile~restart.f90 sourcefile~run.f90 run.F90 sourcefile~run.f90->sourcefile~restart.f90 sourcefile~rungvec.f90 rungvec.F90 sourcefile~run.f90->sourcefile~rungvec.f90 sourcefile~rungvec.f90->sourcefile~mhd3d.f90 sourcefile~rungvec.f90->sourcefile~restart.f90 sourcefile~state.f90 state.F90 sourcefile~state.f90->sourcefile~mhd3d.f90 sourcefile~state.f90->sourcefile~restart.f90 sourcefile~gvec.f90 gvec.F90 sourcefile~gvec.f90->sourcefile~rungvec.f90

Source Code

!===================================================================================================================================
! Copyright (c) 2025 GVEC Contributors, Max Planck Institute for Plasma Physics
! License: MIT
!===================================================================================================================================

!===================================================================================================================================
!>
!!# Module ** Restart Variables **
!!
!!
!!
!===================================================================================================================================
MODULE MODgvec_Restart_Vars
! MODULES
USE MODgvec_Globals,ONLY:wp
IMPLICIT NONE
PUBLIC
!-----------------------------------------------------------------------------------------------------------------------------------
! GLOBAL VARIABLES
LOGICAL             :: doRestart          !! true if second command line argument exists
CHARACTER(LEN=255)  :: RestartFile        !! Name of Restart files (second command line argument)

!===================================================================================================================================
END MODULE MODgvec_Restart_Vars