Neko-TOP
A portable framework for high-order spectral element flow toplogy optimization.
Loading...
Searching...
No Matches
neko.f90
Go to the documentation of this file.
1
34
35program plainneko
36 use neko, only: neko_init, neko_solve, neko_finalize
37 use case, only: case_t
38 use neko_top, only: neko_top_register_types
39
40 type(case_t) :: C
41
42 call neko_top_register_types()
43 call neko_init(c)
44 call neko_solve(c)
45 call neko_finalize(c)
46
47end program plainneko