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 neko_top, only: neko_top_register_types
40
41 type(case_t), target :: C
42
43 call neko_top_register_types()
44 call user_setup(c%user)
45 call neko_init(c)
46 call neko_solve(c)
47 call neko_finalize(c)
48
49
50end program usrneko