JuliaFEM / JuliaFEM.jl

The JuliaFEM software library is a framework that allows for the distributed processing of large Finite Element Models across clusters of computers using simple programming models. It is designed to scale up from single servers to thousands of machines, each offering local computation and storage.
http://juliafem.github.io/JuliaFEM.jl/latest/
MIT License
249 stars 66 forks source link

New package for adding loads? #246

Open ahojukka5 opened 4 years ago

ahojukka5 commented 4 years ago

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 4 years ago

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.