FLASH-X
Doxygen Generated Documentation From Interface Source Code
Multispecies_setProperty.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!!
43
44subroutine Multispecies_setProperty(name, property, value)
45
46 implicit none
47
48 integer, intent(in) :: name, property
49 real, intent(in) :: value
50
51end subroutine Multispecies_setProperty
52
53
54!!
80
81subroutine Multispecies_setIntegerProperty(name, property, value)
83
84 implicit none
85
86 integer, intent(in) :: name, property
87 integer, intent(in) :: value
88
90
91
92!!
103
104!!
120
121subroutine Multispecies_setStringProperty(name, property, value)
123
124 implicit none
125
126 integer, intent(in) :: name, property
127 character(len=*), intent(in) :: value
128
130
131
132
133
134subroutine Multispecies_setRealArrProperty(name, property, value)
136
137 implicit none
138
139 integer, intent(in) :: name, property
140 real, intent(in) :: value(:)
141
143
144
145
146subroutine Multispecies_setIntArrProperty(name, property, value)
148
149 implicit none
150
151 integer, intent(in) :: name, property
152 integer, intent(in) :: value(:)
153
subroutine Multispecies_setStringProperty(name, property, value)
subroutine Multispecies_setProperty(name, property, value)
subroutine Multispecies_setRealArrProperty(name, property, value)
subroutine Multispecies_setIntegerProperty(name, property, value)
subroutine Multispecies_setIntArrProperty(name, property, value)