FLASH-X
Doxygen Generated Documentation From Interface Source Code
Multispecies_getProperty.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!!
42
43subroutine Multispecies_getProperty(name, property, value)
44
45 implicit none
46
47
48 integer, intent(in) :: name, property
49 real, intent(out) :: value
50
51 value = 0.0
52
53end subroutine Multispecies_getProperty
54
55
56!!
81
82subroutine Multispecies_getIntegerProperty(name, property, value)
84
85 implicit none
86
87 integer, intent(in) :: name, property
88 integer, intent(out) :: value
89
90 value = -1
91
92
94
95
96!!
121subroutine Multispecies_getStringProperty(name, property, value)
123
124 implicit none
125
126 integer, intent(in) :: name, property
127 character(len=*), intent(out) :: value
128
129 value = ' '
131
132
133subroutine Multispecies_getRealArrProperty(name, property, value)
135
136 implicit none
137
138 integer, intent(in) :: name, property
139 real, intent(out) :: value(:)
140 value = 0.0
141
143
144
145subroutine Multispecies_getIntArrProperty(name, property, value)
147
148 implicit none
149
150 integer, intent(in) :: name, property
151 integer, intent(out) :: value(:)
152 value = 0
153
subroutine Multispecies_getIntArrProperty(name, property, value)
subroutine Multispecies_getStringProperty(name, property, value)
subroutine Multispecies_getIntegerProperty(name, property, value)
subroutine Multispecies_getRealArrProperty(name, property, value)
subroutine Multispecies_getProperty(name, property, value)