Rename
This commit is contained in:
parent
dd7395b67d
commit
ed83caa03d
3 changed files with 5 additions and 5 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
|
@ -1,4 +1,4 @@
|
||||||
plasmaExpansion
|
vlaplex
|
||||||
*.pyc
|
*.pyc
|
||||||
*.csv
|
*.csv
|
||||||
*.mod
|
*.mod
|
||||||
|
|
|
||||||
4
makefile
4
makefile
|
|
@ -3,10 +3,10 @@ all:
|
||||||
gfortran moduleReferenceValues.f90 -c -lopenblas -Ofast -fopenmp -Wall
|
gfortran moduleReferenceValues.f90 -c -lopenblas -Ofast -fopenmp -Wall
|
||||||
gfortran moduleOutput.f90 -c -lopenblas -Ofast -fopenmp -Wall
|
gfortran moduleOutput.f90 -c -lopenblas -Ofast -fopenmp -Wall
|
||||||
gfortran moduleTableBC.f90 -c -lopenblas -Ofast -fopenmp -Wall
|
gfortran moduleTableBC.f90 -c -lopenblas -Ofast -fopenmp -Wall
|
||||||
gfortran plasmaExpansion.f90 moduleConstantParameters.o moduleReferenceValues.o moduleOutput.o moduleTableBC.o -lopenblas -Ofast -fopenmp -Wall -o plasmaExpansion
|
gfortran vlaplex.f90 moduleConstantParameters.o moduleReferenceValues.o moduleOutput.o moduleTableBC.o -lopenblas -Ofast -fopenmp -Wall -o vlaplex
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -f plasmaExpansion
|
rm -f vlaplex
|
||||||
rm -f *.mod
|
rm -f *.mod
|
||||||
rm -f *.smod
|
rm -f *.smod
|
||||||
rm -f *.o
|
rm -f *.o
|
||||||
|
|
|
||||||
|
|
@ -23,7 +23,7 @@
|
||||||
!
|
!
|
||||||
! end module eos
|
! end module eos
|
||||||
|
|
||||||
program plasmaExpansion
|
program VlaPlEx
|
||||||
use constantParameters, only: dp, kb, qe, eps_0, ev_to_K, cm3_to_m3, PI
|
use constantParameters, only: dp, kb, qe, eps_0, ev_to_K, cm3_to_m3, PI
|
||||||
use output
|
use output
|
||||||
use referenceValues
|
use referenceValues
|
||||||
|
|
@ -403,5 +403,5 @@ program plasmaExpansion
|
||||||
|
|
||||||
end do
|
end do
|
||||||
|
|
||||||
end program plasmaExpansion
|
end program VlaPlEx
|
||||||
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue