FLASH-X
Doxygen Generated Documentation From Interface Source Code
Eos_getParameters.F90
Go to the documentation of this file.
1!! NOTICE
2!! Copyright 2022 UChicago Argonne, LLC and contributors
3!!
4!! Licensed under the Apache License, Version 2.0 (the "License");
5!! you may not use this file except in compliance with the License.
6!!
7!! Unless required by applicable law or agreed to in writing, software
8!! distributed under the License is distributed on an "AS IS" BASIS,
9!! WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
10!! See the License for the specific language governing permissions and
11!! limitations under the License.
12!!
54
55
56
57subroutine Eos_getParameters(eintSwitch,inputsAreUnchanged,inputTempIsGuess,constantGammaC,&
58 inputMassFracNeeded,smalle,smallE1,smallE2,smallE3)
59
60 implicit none
61
62 real,OPTIONAL,intent(OUT) :: eintSwitch
63 logical,OPTIONAL,intent(OUT) :: inputsAreUnchanged
64 logical,OPTIONAL,intent(OUT) :: inputTempIsGuess
65 logical,OPTIONAL,intent(OUT) :: constantGammaC
66 logical,OPTIONAL,intent(OUT) :: inputMassFracNeeded
67 real,OPTIONAL,intent(OUT) :: smalle
68 real,OPTIONAL,intent(OUT) :: smallE1,smallE2,smallE3
69
70 if (present(eintSwitch)) eintSwitch = 0.0
71 if (present(inputsAreUnchanged)) inputsAreUnchanged = .FALSE.
72 if (present(inputTempIsGuess)) inputTempIsGuess = .FALSE.
73 if (present(constantGammaC)) constantGammaC = .FALSE.
74 if (present(inputMassFracNeeded)) inputMassFracNeeded = .FALSE.
75 if (present(smalle)) smalle = 0.0
76 if (present(smallE1)) smallE1 = 0.0
77 if (present(smallE2)) smallE2 = 0.0
78 if (present(smallE3)) smallE3 = 0.0
79
80 return
81end subroutine Eos_getParameters
subroutine Eos_getParameters(eintSwitch, inputsAreUnchanged, inputTempIsGuess, constantGammaC, inputMassFracNeeded, smalle, smallE1, smallE2, smallE3)