This commit is contained in:
Jorge Gonzalez 2024-12-12 10:08:06 +01:00
commit ed83caa03d
3 changed files with 5 additions and 5 deletions

2
.gitignore vendored
View file

@ -1,4 +1,4 @@
plasmaExpansion vlaplex
*.pyc *.pyc
*.csv *.csv
*.mod *.mod

View file

@ -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

View file

@ -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