for the cylinder experiment, loads are applied as: fem_problem.experiment.apply_displ_load(-0.001 * ureg("m"))
if no pint object is used an error is thrown because the .magnitude is used somewhere.
however we do not check if the unit has the right dimensionality or if it is converted to base units.
A respective pint decorator might solve all this easily or some other smart solution ;)
for the cylinder experiment, loads are applied as:
fem_problem.experiment.apply_displ_load(-0.001 * ureg("m"))
if no pint object is used an error is thrown because the.magnitude
is used somewhere. however we do not check if the unit has the right dimensionality or if it is converted to base units. A respective pint decorator might solve all this easily or some other smart solution ;)