Open namurphy opened 5 years ago
I'm still quite a bit worried that this and the whole of PlasmaPy/PlasmaPy-PLEPs#24 might be way out of scope for poor little PlasmaPy, given how little opportunity and time we've all had to maintain and work on the current functionality recently. :(
Yeah, the limited time we've had to spend on PlasmaPy due to external constraints has been worrisome. The bulk of the work for https://github.com/PlasmaPy/PlasmaPy-PLEPs/pull/24 is going to be contingent on finding funding to do that work. My hope is to transform https://github.com/PlasmaPy/PlasmaPy-PLEPs/pull/24 into a grant proposal that would hopefully allow ~2-3 people to work on it full time for ~3 years.
There are probably at least hundreds of plasma simulation codes used for research. One difficulty is that if we want to switch between codes or perform a benchmark, then we have to set up the same problem for each of the different codes, and watch out for nuances related to boundary conditions and normalizations.
To the best of my knowledge, there is no standardized way of defining the computational domain, initial conditions, and boundary conditions for a simulation. Implementation of such a standard would simplify switching between codes, make it easier to perform benchmarks, and improve scientific reproducibility by allowing results to be checked independently.
The following information will need to be included:
These classes should contain no information on the numerical method or grid setup since we want it to be independent of that. The equations to be solved might need to be kept separate too, since the equations will often need to be switched. We would, however, need checks that the dependent variables being simulated are consistent between the ICs, BCs, equations, and numerical method.
We probably need to think more about how best to organize this information. One possibility would be to have separate classes like
Domain
,InitialConditions
, andBoundaryConditions
, and then be able to combine the three into a class likeProblemSetup
.There are going to be a bunch of special cases that we will need to consider. Sometimes the initial conditions will need to include an equilibrium and a perturbation component, in which case we could have
InitialEquilibrium
andInitialPerturbation
classes such that adding them would yield a newInitialConditions
instance.Related to: https://github.com/PlasmaPy/PlasmaPy-PLEPs/pull/24