FLASH-X
Doxygen Generated Documentation From Interface Source Code
Eos_getTempData.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.
80
81#include "Simulation.h"
82
83subroutine Eos_getTempData(axis,pos,vecLen,solnData,gridDataStruct,eosData,mode)
84
85 implicit none
86
87#include "constants.h"
88
89 integer, intent(in) :: axis, vecLen, gridDataStruct, mode
90 integer, dimension(MDIM), intent(in) :: pos
91 real, dimension(:),intent(OUT) :: eosData
92 real, pointer:: solnData(:,:,:,:)
93
94
95 eosData(:) = 0.0
96 return
97end subroutine Eos_getTempData
98
99
100subroutine Eos_getTempDataFromVec(solnVec,eosData,mode)
101
102 implicit none
103
104 integer, intent(in) :: mode
105 real, dimension(:),intent(OUT) :: eosData
106 real, dimension(NUNK_VARS),intent(IN) :: solnVec
107
108 eosData(:) = 0.0
109 return
110end subroutine Eos_getTempDataFromVec
111
subroutine Eos_getTempDataFromVec(solnVec, eosData, mode)
subroutine Eos_getTempData(axis, pos, vecLen, solnData, gridDataStruct, eosData, mode)