Neko-TOP
A portable framework for high-order spectral element flow toplogy optimization.
Loading...
Searching...
No Matches
neko-user.f90
Go to the documentation of this file.
1
34
35program usrneko
36 use neko, only: neko_init, neko_solve, neko_finalize
37 use case, only: case_t
38 use user, only: user_setup
39 use user_access_singleton, only: neko_user_access
41 implicit none
42
43 type(case_t), target :: C
44
46 call user_setup(c%user)
47 call neko_init(c)
48 call neko_user_access%init(c)
49 call neko_solve(c)
50 call neko_finalize(c)
51
52
53end program usrneko
Neko-TOP module.
Definition neko_top.f90:41
subroutine neko_top_register_types()
Add all known types to the Neko registries.
Definition neko_top.f90:62