Neko-TOP
A portable framework for high-order spectral element flow toplogy optimization.
Loading...
Searching...
No Matches
user_module.f90
Go to the documentation of this file.
1
34
51 use case, only: case_t
52 use json_file_module, only: json_file
53 use json_utils, only: json_get
54 use num_types, only: rp
55 use user_initial_conditions, only: scalar_z_split_ic
56
57 implicit none
58
59 private
60 public :: neko_user_init
61
62contains
63
73 subroutine neko_user_init(neko_case)
74 type(case_t), intent(inout) :: neko_case
75
76 ! Set the properties for the fluid
77 ! neko_case%user%initial_conditions => scalar_z_split_ic
78
79 end subroutine neko_user_init
80
81
82
Module designed to setup the topology optimization user interface for Neko. This module should initia...
subroutine, public neko_user_init(neko_case)
Assign user conditions for the neko case.