"README.md" did not exist on "d56a8e0f87cf64d01f79d64913aae2e7ec3a55fb"
BVP.info and Domain.info method
Something that would be super useful (cherry on the cake hein !):
let's assume I have a instanced and parametrized BVP() name bvp
.
As a modeler, I'd like a class method that display the important info of the model:
bvp = BVP()
bvp.set_domain(domain)
bvp.set_vform(vform)
bvp.add_boundary_condition(bnd_cond)
bvp.info()
→ returns something like
-----
domain: HemiSphere
* radius: 1
* number of elements: 100
equation: Poisson
* expression: ...
* variational form: ...
boundary conditions:
* Neumann
* constant value, 10
* domain: the whole border
finite elements:
* type: Lagrange
* order: 1
Solver: blabla
-----
Ad-on:
it could be great to have the same thing for the domain so we can know in an instant its spatial extension and its resolution.