Neko 1.99.3
A portable framework for high-order spectral element flow simulations
Loading...
Searching...
No Matches
gradient_simcomp.f90
Go to the documentation of this file.
1! Copyright (c) 2025, The Neko Authors
2! All rights reserved.
3!
4! Redistribution and use in source and binary forms, with or without
5! modification, are permitted provided that the following conditions
6! are met:
7!
8! * Redistributions of source code must retain the above copyright
9! notice, this list of conditions and the following disclaimer.
10!
11! * Redistributions in binary form must reproduce the above
12! copyright notice, this list of conditions and the following
13! disclaimer in the documentation and/or other materials provided
14! with the distribution.
15!
16! * Neither the name of the authors nor the names of its
17! contributors may be used to endorse or promote products derived
18! from this software without specific prior written permission.
19!
20! THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21! "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22! LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
23! FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
24! COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
25! INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
26! BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
27! LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
28! CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29! LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
30! ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31! POSSIBILITY OF SUCH DAMAGE.
32!
33!
36 use num_types, only : rp, dp, sp
37 use json_module, only : json_file
39 use registry, only : neko_registry
40 use field, only : field_t
41 use operators, only : grad
42 use time_state, only : time_state_t
43 use case, only : case_t
47 use utils, only : neko_varname_len
48 implicit none
49 private
50
53 type, public, extends(simulation_component_t) :: gradient_t
55 type(field_t), pointer :: u
57 type(field_t), pointer :: gradient_x
59 type(field_t), pointer :: gradient_y
61 type(field_t), pointer :: gradient_z
63 type(field_writer_t) :: writer
64
65 contains
67 procedure, pass(this) :: init => gradient_init_from_json
69 generic :: init_from_components => &
70 init_from_controllers, init_from_controllers_properties
72 procedure, pass(this) :: init_from_controllers => &
76 procedure, pass(this) :: init_from_controllers_properties => &
79 procedure, private, pass(this) :: init_common => gradient_init_common
81 procedure, pass(this) :: free => gradient_free
83 procedure, pass(this) :: compute_ => gradient_compute
84 end type gradient_t
85
86contains
87
89 subroutine gradient_init_from_json(this, json, case)
90 class(gradient_t), intent(inout), target :: this
91 type(json_file), intent(inout) :: json
92 class(case_t), intent(inout), target :: case
93 character(len=:), allocatable :: field_name
94 character(len=:), allocatable :: name
95 character(len=NEKO_VARNAME_LEN) :: fields(3)
96 character(len=:), allocatable :: computed_field
97
98 call json_get_or_default(json, "name", name, "gradient")
99 call json_get(json, "field", field_name)
100
101 ! Add fields keyword to the json so that the field_writer picks it up.
102 ! Will also add fields to the registry.
103 call json_get_or_default(json, "computed_field", computed_field, &
104 "gradient" // trim(field_name))
105
106 fields(1) = computed_field // "_x"
107 fields(2) = computed_field // "_y"
108 fields(3) = computed_field // "_z"
109 write(*,*) fields(1), fields(2), fields(3)
110
111 call json%add("fields", fields)
112
113 call this%init_base(json, case)
114 call this%writer%init(json, case)
115
116 call this%init_common(name, field_name, computed_field)
117 end subroutine gradient_init_from_json
118
121 subroutine gradient_init_common(this, name, field_name, computed_field)
122 class(gradient_t), intent(inout) :: this
123 character(len=*) :: name
124 character(len=*) :: field_name
125 character(len=*) :: computed_field
126
127 this%name = name
128 this%u => neko_registry%get_field_by_name(trim(field_name))
129
130 this%gradient_x => neko_registry%get_field_by_name( &
131 computed_field // "_x")
132 this%gradient_y => neko_registry%get_field_by_name( &
133 computed_field // "_y")
134 this%gradient_z => neko_registry%get_field_by_name( &
135 computed_field // "_z")
136
137
138 end subroutine gradient_init_common
139
152 subroutine gradient_init_from_controllers(this, name, case, order, &
153 preprocess_controller, compute_controller, output_controller, &
154 field_name, computed_field, filename, precision)
155 class(gradient_t), intent(inout) :: this
156 character(len=*), intent(in) :: name
157 class(case_t), intent(inout), target :: case
158 integer :: order
159 type(time_based_controller_t), intent(in) :: preprocess_controller
160 type(time_based_controller_t), intent(in) :: compute_controller
161 type(time_based_controller_t), intent(in) :: output_controller
162 character(len=*) :: field_name
163 character(len=*) :: computed_field
164 character(len=*), intent(in), optional :: filename
165 integer, intent(in), optional :: precision
166
167 character(len=NEKO_VARNAME_LEN) :: fields(3)
168
169 fields(1) = trim(computed_field) // "_x"
170 fields(2) = trim(computed_field) // "_y"
171 fields(3) = trim(computed_field) // "_z"
172
173 call this%init_base_from_components(case, order, preprocess_controller, &
174 compute_controller, output_controller)
175 call this%writer%init_from_components("field_writer", case, order, &
176 preprocess_controller, compute_controller, output_controller, fields, &
177 filename, precision)
178 call this%init_common(name, field_name, computed_field)
179
180 end subroutine gradient_init_from_controllers
181
200 case, order, preprocess_control, preprocess_value, compute_control, &
201 compute_value, output_control, output_value, field_name, &
202 computed_field, filename, precision)
203 class(gradient_t), intent(inout) :: this
204 character(len=*), intent(in) :: name
205 class(case_t), intent(inout), target :: case
206 integer :: order
207 character(len=*), intent(in) :: preprocess_control
208 real(kind=rp), intent(in) :: preprocess_value
209 character(len=*), intent(in) :: compute_control
210 real(kind=rp), intent(in) :: compute_value
211 character(len=*), intent(in) :: output_control
212 real(kind=rp), intent(in) :: output_value
213 character(len=*) :: field_name
214 character(len=*) :: computed_field
215 character(len=*), intent(in), optional :: filename
216 integer, intent(in), optional :: precision
217
218 character(len=NEKO_VARNAME_LEN) :: fields(3)
219
220 fields(1) = trim(computed_field) // "_x"
221 fields(2) = trim(computed_field) // "_y"
222 fields(3) = trim(computed_field) // "_z"
223
224 call this%init_base_from_components(case, order, preprocess_control, &
225 preprocess_value, compute_control, compute_value, output_control, &
226 output_value)
227 call this%writer%init_from_components("field_writer", case, order, &
228 preprocess_control, preprocess_value, compute_control, compute_value, &
229 output_control, output_value, fields, filename, precision)
230 call this%init_common(name, field_name, computed_field)
231
233
235 subroutine gradient_free(this)
236 class(gradient_t), intent(inout) :: this
237 call this%free_base()
238 call this%writer%free()
239 nullify(this%gradient_x)
240 nullify(this%gradient_y)
241 nullify(this%gradient_z)
242 nullify(this%u)
243 end subroutine gradient_free
244
247 subroutine gradient_compute(this, time)
248 class(gradient_t), intent(inout) :: this
249 type(time_state_t), intent(in) :: time
250
251 call grad(this%gradient_x%x, this%gradient_y%x, this%gradient_z%x, &
252 this%u%x, this%case%fluid%c_Xh)
253 end subroutine gradient_compute
254
255end module gradient_simcomp
Retrieves a parameter by name or assigns a provided default value. In the latter case also adds the m...
Retrieves a parameter by name or throws an error.
Defines a simulation case.
Definition case.f90:34
Implements the field_writer_t type.
Defines a field.
Definition field.f90:34
Implements the gradient_t type.
subroutine gradient_compute(this, time)
Compute the gradient field.
subroutine gradient_init_from_controllers_properties(this, name, case, order, preprocess_control, preprocess_value, compute_control, compute_value, output_control, output_value, field_name, computed_field, filename, precision)
Constructor from components, passing properties to the time_based_controller` components in the base ...
subroutine gradient_init_from_controllers(this, name, case, order, preprocess_controller, compute_controller, output_controller, field_name, computed_field, filename, precision)
Constructor from components, passing controllers.
subroutine gradient_init_from_json(this, json, case)
Constructor from json.
subroutine gradient_free(this)
Destructor.
subroutine gradient_init_common(this, name, field_name, computed_field)
Common part of the constructors.
Utilities for retrieving parameters from the case files.
integer, parameter, public dp
Definition num_types.f90:9
integer, parameter, public sp
Definition num_types.f90:8
integer, parameter, public rp
Global precision used in computations.
Definition num_types.f90:12
Operators.
Definition operators.f90:34
subroutine, public grad(ux, uy, uz, u, coef)
Compute the gradient of a scalar field.
Implements output_controller_t
Defines a registry for storing solution fields.
Definition registry.f90:34
type(registry_t), target, public neko_registry
Global field registry.
Definition registry.f90:144
Simulation components are objects that encapsulate functionality that can be fit to a particular comp...
subroutine compute_(this, time)
Dummy compute function.
Contains the time_based_controller_t type.
Module with things related to the simulation time.
Utilities.
Definition utils.f90:35
integer, parameter, public neko_varname_len
Definition utils.f90:42
A simulation component that writes a 3d field to a file.
A simulation component that computes the gradient of a field. Wraps the gradient operator.
Base abstract class for simulation components.
A utility type for determining whether an action should be executed based on the current time value....
A struct that contains all info about the time, expand as needed.