use new parser
This commit is contained in:
parent
7ca3d1fda2
commit
1648c72904
|
@ -13,7 +13,6 @@ rayon = "1.3.0"
|
||||||
indicatif = "0.14.0"
|
indicatif = "0.14.0"
|
||||||
structopt = "0.3.14"
|
structopt = "0.3.14"
|
||||||
ndarray = { version = "0.13.1", features = ["serde"] }
|
ndarray = { version = "0.13.1", features = ["serde"] }
|
||||||
json = "0.12.4"
|
|
||||||
either = "1.5.3"
|
either = "1.5.3"
|
||||||
serde = { version = "1.0.115", features = ["derive"] }
|
serde = { version = "1.0.115", features = ["derive"] }
|
||||||
json5 = "0.2.8"
|
json5 = "0.2.8"
|
||||||
|
|
|
@ -4,9 +4,8 @@ use structopt::StructOpt;
|
||||||
use sbp::operators::{SbpOperator2d, UpwindOperator2d};
|
use sbp::operators::{SbpOperator2d, UpwindOperator2d};
|
||||||
use sbp::*;
|
use sbp::*;
|
||||||
|
|
||||||
mod parsing;
|
|
||||||
use parsing::{json_to_grids, json_to_vortex};
|
|
||||||
mod file;
|
mod file;
|
||||||
|
mod parsing;
|
||||||
use file::*;
|
use file::*;
|
||||||
|
|
||||||
pub(crate) type DiffOp = Either<Box<dyn SbpOperator2d>, Box<dyn UpwindOperator2d>>;
|
pub(crate) type DiffOp = Either<Box<dyn SbpOperator2d>, Box<dyn UpwindOperator2d>>;
|
||||||
|
@ -212,12 +211,16 @@ fn main() {
|
||||||
let opt = Options::from_args();
|
let opt = Options::from_args();
|
||||||
let filecontents = std::fs::read_to_string(&opt.json).unwrap();
|
let filecontents = std::fs::read_to_string(&opt.json).unwrap();
|
||||||
|
|
||||||
let json = json::parse(&filecontents).unwrap();
|
let config: parsing::Configuration = json5::from_str(&filecontents).unwrap();
|
||||||
|
|
||||||
let vortexparams = json_to_vortex(json["vortex"].clone());
|
let parsing::RuntimeConfiguration {
|
||||||
let (names, grids, bt, operators) = json_to_grids(json["grids"].clone(), vortexparams.clone());
|
names,
|
||||||
|
grids,
|
||||||
let integration_time: Float = json["integration_time"].as_number().unwrap().into();
|
bc: bt,
|
||||||
|
op: operators,
|
||||||
|
integration_time,
|
||||||
|
vortex: vortexparams,
|
||||||
|
} = config.to_runtime();
|
||||||
|
|
||||||
let mut sys = System::new(grids, bt, operators);
|
let mut sys = System::new(grids, bt, operators);
|
||||||
sys.vortex(0.0, &vortexparams);
|
sys.vortex(0.0, &vortexparams);
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
use super::DiffOp;
|
use super::DiffOp;
|
||||||
use either::*;
|
use either::*;
|
||||||
use json::JsonValue;
|
|
||||||
use sbp::utils::h2linspace;
|
use sbp::utils::h2linspace;
|
||||||
use sbp::Float;
|
use sbp::Float;
|
||||||
|
|
||||||
|
@ -279,192 +278,6 @@ impl Configuration {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn json_to_grids(
|
|
||||||
mut jsongrids: JsonValue,
|
|
||||||
vortexparams: euler::VortexParameters,
|
|
||||||
) -> (
|
|
||||||
Vec<String>,
|
|
||||||
Vec<sbp::grid::Grid>,
|
|
||||||
Vec<euler::BoundaryCharacteristics>,
|
|
||||||
Vec<DiffOp>,
|
|
||||||
) {
|
|
||||||
let default = jsongrids.remove("default");
|
|
||||||
let default_operator = {
|
|
||||||
let operators = &default["operators"];
|
|
||||||
let defaultxi = operators["xi"].as_str().unwrap_or("upwind4");
|
|
||||||
let defaulteta = operators["eta"].as_str().unwrap_or("upwind4");
|
|
||||||
|
|
||||||
(defaulteta.to_string(), defaultxi.to_string())
|
|
||||||
};
|
|
||||||
/*
|
|
||||||
let default_bc: sbp::utils::Direction<Option<String>> = {
|
|
||||||
let bc = &default["boundary_conditions"];
|
|
||||||
Direction {
|
|
||||||
south: bc["south"].as_str().map(|x| x.to_string()),
|
|
||||||
north: bc["north"].as_str().map(|x| x.to_string()),
|
|
||||||
west: bc["west"].as_str().map(|x| x.to_string()),
|
|
||||||
east: bc["east"].as_str().map(|x| x.to_string()),
|
|
||||||
}
|
|
||||||
};
|
|
||||||
*/
|
|
||||||
let mut names = Vec::new();
|
|
||||||
let mut grids = Vec::new();
|
|
||||||
|
|
||||||
let mut operators: Vec<DiffOp> = Vec::new();
|
|
||||||
for (name, grid) in jsongrids.entries() {
|
|
||||||
names.push(name.to_string());
|
|
||||||
grids.push(json2grid(grid["x"].clone(), grid["y"].clone()).unwrap());
|
|
||||||
|
|
||||||
operators.push({
|
|
||||||
use sbp::operators::*;
|
|
||||||
let opxi = grid["operators"]["xi"]
|
|
||||||
.as_str()
|
|
||||||
.unwrap_or(&default_operator.1);
|
|
||||||
|
|
||||||
let opeta = grid["operators"]["eta"]
|
|
||||||
.as_str()
|
|
||||||
.unwrap_or(&default_operator.0);
|
|
||||||
|
|
||||||
match (opeta, opxi) {
|
|
||||||
("upwind4", "upwind4") => Right(Box::new(Upwind4) as Box<dyn UpwindOperator2d>),
|
|
||||||
("upwind9", "upwind9") => Right(Box::new(Upwind9) as Box<dyn UpwindOperator2d>),
|
|
||||||
("upwind4h2", "upwind4h2") => {
|
|
||||||
Right(Box::new(Upwind4h2) as Box<dyn UpwindOperator2d>)
|
|
||||||
}
|
|
||||||
("upwind9h2", "upwind9h2") => {
|
|
||||||
Right(Box::new(Upwind9h2) as Box<dyn UpwindOperator2d>)
|
|
||||||
}
|
|
||||||
|
|
||||||
("upwind4", "upwind9") => {
|
|
||||||
Right(Box::new((&Upwind4, &Upwind9)) as Box<dyn UpwindOperator2d>)
|
|
||||||
}
|
|
||||||
("upwind4", "upwind4h2") => {
|
|
||||||
Right(Box::new((&Upwind4, &Upwind4h2)) as Box<dyn UpwindOperator2d>)
|
|
||||||
}
|
|
||||||
("upwind4", "upwind9h2") => {
|
|
||||||
Right(Box::new((&Upwind4, &Upwind9h2)) as Box<dyn UpwindOperator2d>)
|
|
||||||
}
|
|
||||||
|
|
||||||
("upwind9", "upwind4") => {
|
|
||||||
Right(Box::new((&Upwind9, &Upwind4)) as Box<dyn UpwindOperator2d>)
|
|
||||||
}
|
|
||||||
("upwind9", "upwind4h2") => {
|
|
||||||
Right(Box::new((&Upwind9, &Upwind4h2)) as Box<dyn UpwindOperator2d>)
|
|
||||||
}
|
|
||||||
("upwind9", "upwind9h2") => {
|
|
||||||
Right(Box::new((&Upwind9, &Upwind9h2)) as Box<dyn UpwindOperator2d>)
|
|
||||||
}
|
|
||||||
|
|
||||||
("upwind4h2", "upwind4") => {
|
|
||||||
Right(Box::new((&Upwind4h2, &Upwind4)) as Box<dyn UpwindOperator2d>)
|
|
||||||
}
|
|
||||||
("upwind4h2", "upwind9") => {
|
|
||||||
Right(Box::new((&Upwind4h2, &Upwind9)) as Box<dyn UpwindOperator2d>)
|
|
||||||
}
|
|
||||||
("upwind4h2", "upwind9h2") => {
|
|
||||||
Right(Box::new((&Upwind4h2, &Upwind9h2)) as Box<dyn UpwindOperator2d>)
|
|
||||||
}
|
|
||||||
|
|
||||||
("upwind9h2", "upwind4") => {
|
|
||||||
Right(Box::new((&Upwind9h2, &Upwind4)) as Box<dyn UpwindOperator2d>)
|
|
||||||
}
|
|
||||||
("upwind9h2", "upwind9") => {
|
|
||||||
Right(Box::new((&Upwind9h2, &Upwind9)) as Box<dyn UpwindOperator2d>)
|
|
||||||
}
|
|
||||||
("upwind9h2", "upwind4h2") => {
|
|
||||||
Right(Box::new((&Upwind9h2, &Upwind4h2)) as Box<dyn UpwindOperator2d>)
|
|
||||||
}
|
|
||||||
|
|
||||||
(opeta, opxi) => panic!("combination {} {} not yet implemented", opeta, opxi),
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
let mut bcs = Vec::new();
|
|
||||||
let determine_bc = |dir: Option<&str>| match dir {
|
|
||||||
Some(dir) => {
|
|
||||||
if dir == "vortex" {
|
|
||||||
euler::BoundaryCharacteristic::Vortex(vortexparams.clone())
|
|
||||||
} else if let Some(grid) = dir.strip_prefix("interpolate:") {
|
|
||||||
use sbp::operators::*;
|
|
||||||
let (grid, int_op) = if let Some(rest) = grid.strip_prefix("4:") {
|
|
||||||
(
|
|
||||||
rest,
|
|
||||||
Box::new(Interpolation4) as Box<dyn InterpolationOperator>,
|
|
||||||
)
|
|
||||||
} else if let Some(rest) = grid.strip_prefix("9:") {
|
|
||||||
(
|
|
||||||
rest,
|
|
||||||
Box::new(Interpolation9) as Box<dyn InterpolationOperator>,
|
|
||||||
)
|
|
||||||
} else if let Some(rest) = grid.strip_prefix("8:") {
|
|
||||||
(
|
|
||||||
rest,
|
|
||||||
Box::new(Interpolation8) as Box<dyn InterpolationOperator>,
|
|
||||||
)
|
|
||||||
} else if let Some(rest) = grid.strip_prefix("9h2:") {
|
|
||||||
(
|
|
||||||
rest,
|
|
||||||
Box::new(Interpolation9h2) as Box<dyn InterpolationOperator>,
|
|
||||||
)
|
|
||||||
} else {
|
|
||||||
(
|
|
||||||
grid,
|
|
||||||
Box::new(Interpolation4) as Box<dyn InterpolationOperator>,
|
|
||||||
)
|
|
||||||
};
|
|
||||||
euler::BoundaryCharacteristic::Interpolate(
|
|
||||||
names.iter().position(|other| other == grid).unwrap(),
|
|
||||||
int_op,
|
|
||||||
)
|
|
||||||
} else if let Some(multigrid) = dir.strip_prefix("multi:") {
|
|
||||||
let grids = multigrid.split(':');
|
|
||||||
euler::BoundaryCharacteristic::MultiGrid(
|
|
||||||
grids
|
|
||||||
.map(|g| {
|
|
||||||
let rparen = g.find('(').unwrap();
|
|
||||||
let gridname = &g[..rparen];
|
|
||||||
|
|
||||||
let gridnumber =
|
|
||||||
names.iter().position(|other| other == gridname).unwrap();
|
|
||||||
|
|
||||||
let paren = &g[rparen + 1..];
|
|
||||||
let paren = &paren[..paren.len() - 1];
|
|
||||||
let mut pareni = paren.split(',');
|
|
||||||
let start = pareni.next().unwrap().parse::<usize>().unwrap();
|
|
||||||
let end = pareni.next().unwrap().parse::<usize>().unwrap();
|
|
||||||
|
|
||||||
(gridnumber, start, end)
|
|
||||||
})
|
|
||||||
.collect::<Vec<_>>(),
|
|
||||||
)
|
|
||||||
} else {
|
|
||||||
euler::BoundaryCharacteristic::Grid(
|
|
||||||
names.iter().position(|other| other == dir).unwrap(),
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
None => euler::BoundaryCharacteristic::This,
|
|
||||||
};
|
|
||||||
for name in &names {
|
|
||||||
let bc = &jsongrids[name]["boundary_conditions"];
|
|
||||||
let bc_n = determine_bc(bc["north"].as_str());
|
|
||||||
let bc_s = determine_bc(bc["south"].as_str());
|
|
||||||
let bc_e = determine_bc(bc["east"].as_str());
|
|
||||||
let bc_w = determine_bc(bc["west"].as_str());
|
|
||||||
|
|
||||||
let bc = euler::BoundaryCharacteristics {
|
|
||||||
north: bc_n,
|
|
||||||
south: bc_s,
|
|
||||||
east: bc_e,
|
|
||||||
west: bc_w,
|
|
||||||
};
|
|
||||||
|
|
||||||
bcs.push(bc);
|
|
||||||
}
|
|
||||||
|
|
||||||
(names, grids, bcs, operators)
|
|
||||||
}
|
|
||||||
#[derive(Clone, Debug, Serialize, Deserialize)]
|
#[derive(Clone, Debug, Serialize, Deserialize)]
|
||||||
#[serde(untagged)]
|
#[serde(untagged)]
|
||||||
pub enum ArrayForm {
|
pub enum ArrayForm {
|
||||||
|
@ -487,198 +300,6 @@ impl From<ndarray::Array2<Float>> for ArrayForm {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Parsing json strings to some gridlike form
|
|
||||||
///
|
|
||||||
/// Each grid should be an object with the descriptors on the form
|
|
||||||
///
|
|
||||||
/// x: [x0, x1, ..., xn]
|
|
||||||
/// which results in x being broadcasted to nx/ny size
|
|
||||||
/// x: linspace:start:end:num
|
|
||||||
/// x: linspace:h2:start:end:num
|
|
||||||
/// where x will be from start to end inclusive, with num steps
|
|
||||||
/// x: [[x00, x01, .., x0n], [x10, x11, .., x1n], ... [xm0, xm1, ..., xmn]]
|
|
||||||
/// which is the full grid x
|
|
||||||
///
|
|
||||||
/// This conversion is similar with y
|
|
||||||
///
|
|
||||||
/// Optional parameters:
|
|
||||||
/// * name (for relating boundaries)
|
|
||||||
/// * dir{e,w,n,s} (for boundary terms)
|
|
||||||
fn json2grid(x: JsonValue, y: JsonValue) -> Result<sbp::grid::Grid, String> {
|
|
||||||
let to_array_form = |mut x: JsonValue| {
|
|
||||||
if let Some(s) = x.take_string() {
|
|
||||||
if let Some(s) = s.strip_prefix("linspace:") {
|
|
||||||
let (s, h2) = if let Some(s) = s.strip_prefix("h2:") {
|
|
||||||
(s, true)
|
|
||||||
} else {
|
|
||||||
(s, false)
|
|
||||||
};
|
|
||||||
|
|
||||||
// linspace:start:stop:steps
|
|
||||||
let mut iter = s.split(':');
|
|
||||||
|
|
||||||
let start = iter.next();
|
|
||||||
let start: Float = match start {
|
|
||||||
Some(x) => x.parse().map_err(|e| format!("linspace: {}", e))?,
|
|
||||||
None => return Err(format!("")),
|
|
||||||
};
|
|
||||||
let end = iter.next();
|
|
||||||
let end: Float = match end {
|
|
||||||
Some(x) => x.parse().map_err(|e| format!("linspace: {}", e))?,
|
|
||||||
None => return Err(format!("")),
|
|
||||||
};
|
|
||||||
let steps = iter.next();
|
|
||||||
let steps: usize = match steps {
|
|
||||||
Some(x) => x.parse().map_err(|e| format!("linspace: {}", e))?,
|
|
||||||
None => return Err(format!("")),
|
|
||||||
};
|
|
||||||
if iter.next().is_some() {
|
|
||||||
return Err("linspace: contained more than expected".to_string());
|
|
||||||
}
|
|
||||||
Ok(ArrayForm::Array1(if h2 {
|
|
||||||
h2linspace(start, end, steps)
|
|
||||||
} else {
|
|
||||||
ndarray::Array::linspace(start, end, steps)
|
|
||||||
}))
|
|
||||||
} else {
|
|
||||||
Err("Could not parse gridline".to_string())
|
|
||||||
}
|
|
||||||
} else if x.is_array() {
|
|
||||||
let arrlen = x.len();
|
|
||||||
if arrlen == 0 {
|
|
||||||
return Err("gridline does not have any members".to_string());
|
|
||||||
}
|
|
||||||
if !x[0].is_array() {
|
|
||||||
let v = x
|
|
||||||
.members()
|
|
||||||
.map(|x: &JsonValue| -> Result<Float, String> {
|
|
||||||
Ok(x.as_number()
|
|
||||||
.ok_or_else(|| {
|
|
||||||
"Array contained something that could not be converted to an array"
|
|
||||||
.to_string()
|
|
||||||
})?
|
|
||||||
.into())
|
|
||||||
})
|
|
||||||
.collect::<Result<Vec<Float>, _>>()?;
|
|
||||||
Ok(ArrayForm::Array1(ndarray::Array::from(v)))
|
|
||||||
} else {
|
|
||||||
let arrlen2 = x[0].len();
|
|
||||||
if arrlen2 == 0 {
|
|
||||||
return Err("gridline does not have any members".to_string());
|
|
||||||
}
|
|
||||||
for member in x.members() {
|
|
||||||
if arrlen2 != member.len() {
|
|
||||||
return Err("some arrays seems to have differing lengths".to_string());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
let mut arr = ndarray::Array::zeros((arrlen, arrlen2));
|
|
||||||
for (mut arr, member) in arr.outer_iter_mut().zip(x.members()) {
|
|
||||||
for (a, m) in arr.iter_mut().zip(member.members()) {
|
|
||||||
*a = m
|
|
||||||
.as_number()
|
|
||||||
.ok_or_else(|| {
|
|
||||||
"array contained something which was not a number".to_string()
|
|
||||||
})?
|
|
||||||
.into()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Ok(ArrayForm::Array2(arr))
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
Err("Inner object was not a string value, or an array".to_string())
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
if x.is_empty() {
|
|
||||||
return Err("x was empty".to_string());
|
|
||||||
}
|
|
||||||
let x = to_array_form(x)?;
|
|
||||||
|
|
||||||
if y.is_empty() {
|
|
||||||
return Err("y was empty".to_string());
|
|
||||||
}
|
|
||||||
let y = to_array_form(y)?;
|
|
||||||
|
|
||||||
let (x, y) = match (x, y) {
|
|
||||||
(ArrayForm::Array1(x), ArrayForm::Array1(y)) => {
|
|
||||||
let xlen = x.len();
|
|
||||||
let ylen = y.len();
|
|
||||||
let x = x.broadcast((ylen, xlen)).unwrap().to_owned();
|
|
||||||
let y = y
|
|
||||||
.broadcast((xlen, ylen))
|
|
||||||
.unwrap()
|
|
||||||
.reversed_axes()
|
|
||||||
.to_owned();
|
|
||||||
|
|
||||||
(x, y)
|
|
||||||
}
|
|
||||||
(ArrayForm::Array2(x), ArrayForm::Array2(y)) => {
|
|
||||||
assert_eq!(x.shape(), y.shape());
|
|
||||||
(x, y)
|
|
||||||
}
|
|
||||||
(ArrayForm::Array1(x), ArrayForm::Array2(y)) => {
|
|
||||||
assert_eq!(x.len(), y.shape()[1]);
|
|
||||||
let x = x.broadcast((y.shape()[1], x.len())).unwrap().to_owned();
|
|
||||||
(x, y)
|
|
||||||
}
|
|
||||||
(ArrayForm::Array2(x), ArrayForm::Array1(y)) => {
|
|
||||||
assert_eq!(x.shape()[0], y.len());
|
|
||||||
let y = y
|
|
||||||
.broadcast((x.shape()[1], y.len()))
|
|
||||||
.unwrap()
|
|
||||||
.reversed_axes()
|
|
||||||
.to_owned();
|
|
||||||
(x, y)
|
|
||||||
}
|
|
||||||
};
|
|
||||||
assert_eq!(x.shape(), y.shape());
|
|
||||||
|
|
||||||
Ok(sbp::grid::Grid::new(x, y).unwrap())
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn json_to_vortex(mut json: JsonValue) -> euler::VortexParameters {
|
|
||||||
let mach = json.remove("mach").as_number().unwrap().into();
|
|
||||||
|
|
||||||
// Get max length of any (potential) array
|
|
||||||
let mut maxlen = None;
|
|
||||||
for &name in &["x0", "y0", "rstar", "eps"] {
|
|
||||||
if json[name].is_array() {
|
|
||||||
maxlen = Some(json[name].members().count());
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
let maxlen = maxlen.unwrap_or(1);
|
|
||||||
|
|
||||||
let into_iterator = move |elem| -> Box<dyn Iterator<Item = Float>> {
|
|
||||||
match elem {
|
|
||||||
JsonValue::Number(x) => Box::new(std::iter::repeat(x.into())),
|
|
||||||
JsonValue::Array(x) => {
|
|
||||||
Box::new(x.into_iter().map(move |x| x.as_number().unwrap().into()))
|
|
||||||
}
|
|
||||||
_ => panic!("This element is not a number of array"),
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
let x0 = into_iterator(json.remove("x0"));
|
|
||||||
let y0 = into_iterator(json.remove("y0"));
|
|
||||||
let rstar = into_iterator(json.remove("rstar"));
|
|
||||||
let eps = into_iterator(json.remove("eps"));
|
|
||||||
|
|
||||||
let mut vortices = euler::ArrayVec::new();
|
|
||||||
for (((x0, y0), rstar), eps) in x0.zip(y0).zip(rstar).zip(eps).take(maxlen) {
|
|
||||||
vortices.push(euler::Vortice { x0, y0, rstar, eps })
|
|
||||||
}
|
|
||||||
|
|
||||||
if !json.is_empty() {
|
|
||||||
eprintln!("Found unused items when parsing vortex");
|
|
||||||
for (name, val) in json.entries() {
|
|
||||||
eprintln!("\t{} {}", name, val.dump());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
euler::VortexParameters { vortices, mach }
|
|
||||||
}
|
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn output_configuration() {
|
fn output_configuration() {
|
||||||
let mut grids = Grids::new();
|
let mut grids = Grids::new();
|
||||||
|
|
Loading…
Reference in New Issue