-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
PDE Petrinet models #77
base: main
Are you sure you want to change the base?
Conversation
Hi @danbryce I ran However, when I ran
|
This directory includes subdirectories (noted below) for multiple PDE problems that are encoded as Petri nets.
halfar
: ice dome modeladvection
: advection model for incompressible flowsThe files in each subdirectory use the naming scheme, as follows:
{problem}_{derivative}_{dimensions}_{boundary_slope}_{num_disc}.json
where
problem
: the name of the problem (e.g.,advection
)derivative
: the method used to compute spatial derivatives (e.g.,forward
,backward
, andcentered
)dimensions
: the number of spatial dimensions (1, 2, or 3)boundary_slope
: the coefficient for boundary conditions, expressed asu(x, t) = kt
, wherek = boundary_slope
,t
is the time (relative to starting time at 0),u
is a state variable, andx
is a boundary position.num_disc
: the number of discrete points in each dimension (e.g., ifdimension = 2
andnum_disc = 5
, then there will be5^2 = 25
positions, not including boundaries).The generator for these instances is currently available here, and a notebook illustrating the results of FUNMAN analyzing the models is available here.
Authored by [email protected] and [email protected]