Able to read BC from file
This commit is contained in:
parent
eebadc8e05
commit
422b9e84e2
7 changed files with 484 additions and 327 deletions
14
makefile
14
makefile
|
|
@ -1,3 +1,13 @@
|
|||
make all:
|
||||
gfortran plasmaExpansion.f90 -lopenblas -Ofast -fopenmp -Wall -o plasmaExpansion
|
||||
all:
|
||||
gfortran moduleConstantParameters.f90 -c
|
||||
gfortran moduleReferenceValues.f90 -c
|
||||
gfortran moduleOutput.f90 -c
|
||||
gfortran moduleTableBC.f90 -c
|
||||
gfortran plasmaExpansion.f90 moduleConstantParameters.o moduleReferenceValues.o moduleOutput.o moduleTableBC.o -lopenblas -Ofast -fopenmp -Wall -o plasmaExpansion
|
||||
|
||||
clean:
|
||||
rm -f plasmaExpansion
|
||||
rm -f *.mod
|
||||
rm -f *.smod
|
||||
rm -f *.o
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue