FLASH-X
Doxygen Generated Documentation From Interface Source Code
RuntimeParameters_set.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!!
51
52subroutine RuntimeParameters_setReal (name, value)
53
54implicit none
55 character(len=*), intent(in) :: name
56 real, intent(in) :: value
57 logical :: current_val = .TRUE.
58
59end subroutine RuntimeParameters_setReal
60
61
62
63
64
65subroutine RuntimeParameters_setInt (name, value)
66
67implicit none
68 character(len=*), intent(in) :: name
69 integer, intent(in) :: value
70 logical :: current_val = .TRUE.
71
72end subroutine RuntimeParameters_setInt
73
74
75
76subroutine RuntimeParameters_setStr (name, value)
77implicit none
78 character(len=*),intent(in) :: name, value
79 logical :: current_val = .TRUE.
80end subroutine RuntimeParameters_setStr
81
82
83
84
85
86
87subroutine RuntimeParameters_setLog (name, value)
88implicit none
89 character(len=*),intent(in) :: name
90 logical,intent(in) :: value
91 logical :: current_val = .TRUE.
92end subroutine RuntimeParameters_setLog
93
94
subroutine RuntimeParameters_setLog(name, value)
subroutine RuntimeParameters_setInt(name, value)
subroutine RuntimeParameters_setStr(name, value)
subroutine RuntimeParameters_setReal(name, value)