46 use json_module,
only : json_file
86 type(
field_t),
intent(inout) :: s
87 type(
coef_t),
intent(in) :: coef
88 type(
gs_t),
intent(inout) :: gs
89 character(len=*) :: type
90 type(json_file),
intent(inout) :: params
91 integer,
intent(in) :: i
94 real(kind=
rp) :: ic_value
95 character(len=:),
allocatable :: read_str
96 real(kind=
rp) :: zone_value
98 if (trim(type) .eq.
'uniform')
then
103 else if (trim(type) .eq.
'point_zone')
then
106 call json_get(params,
'zone_name', read_str)
111 else if (trim(type) .eq.
'field')
then
114 character(len=NEKO_FNAME_LEN) :: fname, mesh_fname
115 logical :: interpolate
116 type(json_file) :: interp_subdict
117 integer :: tgt_scal_idx
119 call json_get(params,
'file_name', read_str)
120 fname = trim(read_str)
127 mesh_fname = trim(read_str)
137 tgt_scal_idx, interp_subdict)
157 character(len=*),
intent(in) :: scheme_name
158 type(field_t),
target,
intent(inout) :: s
159 type(coef_t),
intent(in) :: coef
160 type(gs_t),
intent(inout) :: gs
161 procedure(user_initial_conditions_intf) :: user_proc
162 type(field_list_t) :: fields
164 call neko_log%message(
"Type: user")
167 call fields%assign_to_field(1, s)
169 call user_proc(scheme_name, fields)
181 type(field_t),
intent(inout) :: s
182 type(coef_t),
intent(in) :: coef
183 type(gs_t),
intent(inout) :: gs
187 if (neko_bcknd_device .eq. 1)
then
188 call device_memcpy(s%x, s%x_d, n, host_to_device, sync = .false.)
192 call gs%op(s%x, n, gs_op_add)
194 if (neko_bcknd_device .eq. 1)
then
195 call device_col2(s%x_d, coef%mult_d, n)
197 call col2(s%x, coef%mult, n)
207 type(field_t),
intent(inout) :: s
208 real(kind=rp),
intent(in) :: ic_value
210 character(len=LOG_SIZE) :: log_buf
212 call neko_log%message(
"Type : uniform")
213 write (log_buf,
'(A,ES12.6)')
"Value: ", ic_value
214 call neko_log%message(log_buf)
218 if (neko_bcknd_device .eq. 1)
then
219 call cfill(s%x, ic_value, n)
232 type(field_t),
intent(inout) :: s
233 real(kind=rp),
intent(in) :: base_value
234 character(len=*),
intent(in) :: zone_name
235 real(kind=rp),
intent(in) :: zone_value
238 character(len=LOG_SIZE) :: log_buf
239 class(point_zone_t),
pointer :: zone
242 call neko_log%message(
"Type : point_zone")
243 write (log_buf,
'(A,ES12.6)')
"Base value: ", base_value
244 call neko_log%message(log_buf)
245 call neko_log%message(
"Zone name : " // trim(zone_name))
246 write (log_buf,
'(A,ES12.6)')
"Zone value: ", zone_value
247 call neko_log%message(log_buf)
250 zone => neko_point_zone_registry%get_point_zone(trim(zone_name))
253 call cfill_mask(s%x, zone_value,
size, zone%mask%get(), zone%size)
273 interpolate, mesh_file_name, i, target_idx, global_interp_subdict)
274 type(field_t),
target,
intent(inout) :: s
275 character(len=*),
intent(in) :: file_name
276 logical,
intent(in) :: interpolate
277 character(len=*),
intent(inout) :: mesh_file_name
278 integer,
intent(in) :: i
279 integer,
intent(in) :: target_idx
280 type(json_file),
intent(inout) :: global_interp_subdict
282 character(len=LOG_SIZE) :: log_buf
283 type(field_t),
pointer :: ss
284 type(field_list_t) :: s_tgt_list
286 if (i .ne. target_idx)
then
287 write (log_buf,
'(A,I0,A,I0)')
"Loading scalar #", target_idx, &
289 call neko_log%message(log_buf)
296 call s_tgt_list%init(1)
297 call s_tgt_list%assign(1, ss)
299 call import_fields(file_name, global_interp_subdict, mesh_file_name, &
300 s_target_list = s_tgt_list, &
301 s_index_list = [target_idx], &
302 interpolate = interpolate)
304 call s_tgt_list%free()
310 call s%copy_from(device_to_host, .true.)
Copy data between host and device (or device and device)
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.
Abstract interface for user defined initial conditions.
subroutine, public device_col2(a_d, b_d, n, strm)
Vector multiplication .
Device abstraction, common interface for various accelerators.
integer, parameter, public host_to_device
integer, parameter, public device_to_host
Module for file I/O operations.
Simple module to handle fld file series. Provides an interface to the different fields sotred in a fl...
Implements global_interpolation given a dofmap.
Importation of fields from fld files.
Routines to interpolate between different spaces.
Utilities for retrieving parameters from the case files.
subroutine, public json_get_subdict_or_empty(json, key, output)
Extract a sub-object from a json object and returns an empty object if the key is missing.
type(log_t), public neko_log
Global log stream.
integer, parameter, public log_size
subroutine, public cfill(a, c, n)
Set all elements to a constant c .
subroutine, public col2(a, b, n)
Vector multiplication .
subroutine, public cfill_mask(a, c, n, mask, n_mask)
Fill a constant to a masked vector. .
integer, parameter neko_bcknd_device
integer, parameter, public rp
Global precision used in computations.
type(point_zone_registry_t), target, public neko_point_zone_registry
Global point_zone registry.
Scalar initial condition.
subroutine set_scalar_ic_uniform(s, ic_value)
Uniform initial condition.
subroutine set_scalar_ic_fld(s, file_name, interpolate, mesh_file_name, i, target_idx, global_interp_subdict)
Set the initial condition of the scalar based on a field. @detail The field is read from an fld file....
subroutine set_scalar_ic_point_zone(s, base_value, zone_name, zone_value)
Point zone initial condition.
subroutine set_scalar_ic_common(s, coef, gs)
Set scalar initial condition (common)
subroutine set_scalar_ic_int(s, coef, gs, type, params, i)
Set scalar initial condition (builtin)
subroutine set_scalar_ic_usr(scheme_name, s, coef, gs, user_proc)
Set scalar intial condition (user defined)
Defines a function space.
integer, parameter, public gll
Interfaces for user interaction with NEKO.
integer function, public extract_fld_file_index(fld_filename, default_index)
Extracts the index of a field file. For example, "myfield.f00045" will return 45. If the suffix of th...
integer, parameter, public neko_fname_len
subroutine, public neko_warning(warning_msg)
Reports a warning to standard output.
subroutine, public filename_chsuffix(fname, new_fname, new_suffix)
Change a filename's suffix.
subroutine, public filename_suffix(fname, suffix)
Extract a filename's suffix.
Coefficients defined on a given (mesh, ) tuple. Arrays use indices (i,j,k,e): element e,...
field_list_t, To be able to group fields together
A wrapper around a polymorphic generic_file_t that handles its init. This is essentially a factory fo...
Interface for NEKTON fld files.
Implements global interpolation for arbitrary points in the domain.
Interpolation between two space::space_t.
Base abstract type for point zones.
The function space for the SEM solution fields.