New package for adding loads?
ahojukka5 opened this issue · 1 comments
ahojukka5 commented
Should we consider building a separate package for adding loads to continuum models? We could then have several problems, like
traction = Problem(Traction, "trac", 3)
pressureLoad = Problem(PressureLoad, "pressure load", 3)
volumeLoad = Problem(VolumeLoad, "volume load", 3)
and so on?
ahojukka5 commented
Or maybe it's enough to have SurfaceLoad
and VolumeLoad
, we can then set fields to them and maybe add some helpers:
pressureLoad = PressureLoad(100.0)
and so on.