Hi Dealii Users;
I have a similar problem, I am running a 3D problem for a beam with the following dimensions x=10 mm and y= 1 mm and z =1 mm I am trying to adapt step-8 to my case the I am facing the following challenges :
1- importing msh file to the dealii, I copied a print_mesh_info function to see the vtu file but the following error pop up.
An error occurred in line <2018> of file </home/mohammed/FEM/dealii/dealii/source/grid/grid_in.cc> in function
void dealii::GridIn<dim, spacedim>::read_msh(std::istream&) [with int dim = 3; int spacedim = 3; std::istream = std::basic_istream<char>]
The violated condition was:
cells.size() > 0
2- the purpose of this work is to learn how to implement the boundary conditions. the .msh file has been meshed as hexahedral where it has 100 cells along x axis and 10 cells along y and 10 cells along z axis. I would like to apply 100 N force on the right side of the beam pointing to ( + x axis and the second case + y axis " I mean the direction of the force") and a fixed wall on the left side knowing that I named the cells for the right side of the beam (in .msh file) force while for the left side of the beam wall.
Thank you in advance !
Kind Regards.