Neko-TOP
A portable framework for high-order spectral element flow toplogy optimization.
Loading...
Searching...
No Matches
neko-user.f90
1program usrneko
2 use neko, only: neko_init, neko_solve, neko_finalize
3 use case, only: case_t
4 use user, only: user_setup
5
6 type(case_t), target :: C
7
8 call user_setup(c%usr)
9 call neko_init(c)
10 call neko_solve(c)
11 call neko_finalize(c)
12
13
14end program usrneko