added two input parameters nsp and nrxn

This commit is contained in:
ignis 2020-02-01 11:45:46 +09:00
parent 76dbc0563a
commit 9e66226c65
2 changed files with 5 additions and 0 deletions

View file

@ -31,6 +31,7 @@ module m_parameters
real :: pflame,pflold,oldu
! Solver Control
integer :: nsp, nrxn
integer :: ncyc=0,int_pr
real :: absolute_tolerence=1e-8
real :: dt,tf,t_now,t_uf,dt_uf
@ -109,6 +110,8 @@ contains
CALL READ_PARAMETER (hrp)
CALL READ_PARAMETER (le_a)
CALL READ_PARAMETER (le_x)
CALL READ_PARAMETER (nsp)
CALL READ_PARAMETER (nrxn)
! READ(itape,*) cdum,table_size
! WRITE(otape,*) cdum,table_size

2
code/sample/itape.py Normal file → Executable file
View file

@ -37,6 +37,8 @@ beta1 5
hrp 0.75
le_a 1.
le_x 0.20
nsp 1
nrxn 1
'''
).split()