Neko-TOP
A portable framework for high-order spectral element flow toplogy optimization.
Loading...
Searching...
No Matches
topopt_driver.f90
Go to the documentation of this file.
1! ============================================================================ !
2! Neko Top program
3! ============================================================================ !
4
5program nekotop
7 use case, only: case_t
8
9 implicit none
10
11 type(case_t) :: neko_case
12
13 call neko_top_init(neko_case)
14 call neko_top_solve(neko_case)
15 call neko_top_finalize(neko_case)
16
17end program nekotop
subroutine, public neko_top_init(neko_case)
Register user defined functions (see nekos user_intf.f90)
Definition neko_top.f90:32
subroutine, public neko_top_solve(neko_case)
Definition neko_top.f90:75
subroutine, public neko_top_finalize(neko_case)
Definition neko_top.f90:109
program nekotop