SuperLatticePhysWallShearStress3D()
OpenLB – Open Source Lattice Boltzmann Code › Forums › on OpenLB › General Topics › SuperLatticePhysWallShearStress3D()
- This topic has 3 replies, 2 voices, and was last updated 3 years ago by stephan.
-
AuthorPosts
-
September 7, 2021 at 9:37 am #5954sahilbhapkar30Participant
Hello,
I have a small doubt regarding the Wall shear Stress 3D. It gives the norm value when we add a functor for it. I need components of the shear stress for each direction(X,Y,Z). In the forum below, there has been discussion about the same.
I was not able to understand this line.
Then you need to increase the functor dimension of both Super and BlockLatticePhysWallShearStress3D to 3 in order to have 3 output components.As I am new to C++, I could not understand how to increase the functor dimension and how to output each stress component.
I would really appreciate help in this case.
Thank you
September 8, 2021 at 3:42 pm #5959stephanModeratorDear sahilbhapkar30,
thank you for your question.
The functor dimension can be specified in line 50 and 77 of https://www.openlb.net/DoxyGen/html/d2/d41/latticePhysWallShearStress3D_8hh_source.html by modifying the last argument of the parent SuperLatticePhysF3D<T, DESCRIPTOR>(sLattice, converter, 1).
BR
StephanSeptember 8, 2021 at 4:59 pm #5961sahilbhapkar30ParticipantDear Stephan,
Thank you for your response. I have another doubt.I want to calculate the wall shear stress at the inlet and outlet of my 3D geometry.
I implemented this thing in the main:
SuperLatticePhysWallShearStress3D<T,DESCRIPTOR> wss(sLattice, superGeometry, 3, converter, inflow1);
SuperLatticePhysWallShearStress3D<T,DESCRIPTOR> wss1(sLattice, superGeometry, 3, converter, inflow2);
SuperLatticePhysWallShearStress3D<T,DESCRIPTOR> wss2(sLattice, superGeometry, 4, converter, outflow_wall);
SuperLatticePhysWallShearStress3D<T,DESCRIPTOR> wss3(sLattice, superGeometry, 4, converter, outflow_wall_2);where inflow1, inflow2, outflow_wall and outflow_wall_2 are the indicator cuboids which I have used for the inlet and outflow.
In addition, I have implemented the functor (vtmWriter.addFunctor( wss)) for each of them in the get results.
But after the simulation, I am getting the wall shear stress value for the inlet flow only. If I comment the inflow region area, I do get the outflow wall shear stress value if I rerun the simulation.
Could you tell me, what I am doing wrong?
Thank you.
September 8, 2021 at 5:21 pm #5962stephanModeratorHi sahilbhapkar30,
that’s hard to tell right away.
Please make sure not to specify things multiply.
Ensure the correct material number and cuboid definitions, i.e. to hit the nodes correctly with the indicator cuboids (you can double-check by loading the ./tmp/vtkData/geometry_<>.vtm file into paraview and visualizing as points).Also, in the getResults function call all of them in a row:
SuperLatticePhysWallShearStress3D<T,DESCRIPTOR> wss(…);
SuperLatticePhysWallShearStress3D<T,DESCRIPTOR> wss1(…);
SuperLatticePhysWallShearStress3D<T,DESCRIPTOR> wss2(…);
SuperLatticePhysWallShearStress3D<T,DESCRIPTOR> wss3(…);
vtmWriter.addFunctor( wss );
vtmWriter.addFunctor( wss1 );
vtmWriter.addFunctor( wss2 );
vtmWriter.addFunctor( wss3 );Good luck with that!
BR
Stephan -
AuthorPosts
- You must be logged in to reply to this topic.