Neko-TOP
A portable framework for high-order spectral element flow toplogy optimization.
Loading...
Searching...
No Matches
neko_top_simcomps.f90
1
34
36submodule(neko_top) neko_top_simcomps
37 use simulation_component, only: simulation_component_allocate, &
38 register_simulation_component
39
40 ! Our user-defined simulation components
42
43contains
44
46 module subroutine register_simcomps()
47 procedure(simulation_component_allocate), pointer :: steady
48
49 ! Assign the pointers
51
52 ! Register the simulation components allocators
53 call register_simulation_component('steady', steady)
54 end subroutine register_simcomps
55
56end submodule neko_top_simcomps
Neko-TOP module.
Definition neko_top.f90:41
Implements the steady_simcomp_t type.
subroutine, public steady_simcomp_allocate(obj)
Allocator for the steady simulation component.