NOTE: It is a known limitation of doxygen that Fortran interfaces will be listed as "Data Types". Please refer to the "Functions/Subroutines" section instead.
More...
NOTE: It is a known limitation of doxygen that Fortran interfaces will be listed as "Data Types". Please refer to the "Functions/Subroutines" section instead.
◆ julia_eval_string()
| subroutine libtrixi::julia_eval_string |
( |
character(len=*), intent(in) |
code | ) |
|
◆ julia_eval_string_c()
◆ trixi_calculate_dt()
◆ trixi_finalize()
◆ trixi_finalize_simulation()
Finalize simulation.
- Parameters
-
| [in] | handle | simulation handle |
- See also
- trixi_finalize_simulation_api_c "trixi_finalize_simulation (C API)"
◆ trixi_initialize()
| subroutine libtrixi::trixi_initialize |
( |
character(len=*), intent(in) |
project_directory, |
|
|
character(len=*), intent(in), optional |
depot_path |
|
) |
| |
◆ trixi_initialize_c()
| trixi_initialize_c |
( |
character(kind=c_char), dimension(*), intent(in) |
project_directory, |
|
|
character(kind=c_char), dimension(*), intent(in), optional |
depot_path |
|
) |
| |
Initialize Julia runtime environment (C char pointer version)
Initialize Julia and activate the project at project_directory. If depot_path is given, forcefully set the environment variable JULIA_DEPOT_PATH to the value of depot_path. Ifdepot_pathis not given, then proceed as follows: If JULIA_DEPOT_PATHis already set, do not touch it. Otherwise, set JULIA_DEPOT_PATHtoproject_directory+default_depot_path`.
- Parameters
-
| [in] | project_directory | Path to project directory (C char pointer) |
| [in] | depot_path | Path to Julia depot path (optional, C char pointer) |
- See also
- trixi_initialize (Fortran convenience version)
-
trixi_initialize (C API)
◆ trixi_initialize_simulation()
| integer(c_int) function libtrixi::trixi_initialize_simulation |
( |
character(len=*), intent(in) |
libelixir | ) |
|
◆ trixi_initialize_simulation_c()
◆ trixi_is_finished()
| logical function libtrixi::trixi_is_finished |
( |
integer(c_int), intent(in) |
handle | ) |
|
◆ trixi_is_finished_c()
◆ trixi_step()
| trixi_step |
( |
integer(c_int), intent(in), value |
handle | ) |
|
Perform next simulation step.
- Parameters
-
| [in] | handle | simulation handle |
- See also
- trixi_step (C API)