35 use json_module,
only : json_file
63 type(json_file),
intent(inout) :: json
64 class(
case_t),
intent(inout),
target :: case
67 call this%init_base(json,
case)
68 this%preprocess_controller = this%compute_controller
69 call this%lpt%init(json,
case)
70 this%lpt%output_controller = this%output_controller
71 this%name = this%lpt%name
87 call this%lpt%preprocess(time)
95 call this%lpt%compute(time)
Defines a simulation case.
Simulation-component handler for Lagrangian particle tracking.
subroutine lpt_simcomp_free(this)
Free the component.
subroutine lpt_simcomp_preprocess(this, time)
Update LPT before the fluid solve.
subroutine lpt_simcomp_init_from_json(this, json, case)
Construct from JSON.
subroutine lpt_simcomp_compute(this, time)
Update LPT after the fluid solve.
Implements lpt_t. (Lagrangian Particle Tracking)
Simulation components are objects that encapsulate functionality that can be fit to a particular comp...
subroutine preprocess_(this, time)
Dummy preprocessing function.
subroutine compute_(this, time)
Dummy compute function.
Module with things related to the simulation time.
Passive Lagrangian particle tracking.
A simulation component that drives passive Lagrangian particle tracking.
Base abstract class for simulation components.
A struct that contains all info about the time, expand as needed.