Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Compatibility of tutorials with OpenFOAM 10 #282

Open
MakisH opened this issue Jul 17, 2022 · 1 comment
Open

Compatibility of tutorials with OpenFOAM 10 #282

MakisH opened this issue Jul 17, 2022 · 1 comment

Comments

@MakisH
Copy link
Member

MakisH commented Jul 17, 2022

I ported the adapter to OpenFOAM 10, but there are also a few configuration changes for the tutorials and all cases. I am not sure at the moment how to handle this, so I am for now describing what changes I have collected:

  • cannot find file "constant/physicalProperties"
    • We need to rename the constant/transportProperties file for laplacianFoam (affects all our CHT cases).
  • The buoyantPimpleFoam solver has been replaced by the more general buoyantFoam solver which can be used for both steady and transient cases.
    • We need to replace buoyantPimpleFoam with buoyantFoam in system/controlDict (affects all our CHT cases).
  • fvMeshStitcher for changing mesh not found. Valid fvMeshStitchers are : 1(stationary)
    • No clue what this means right now, seems to affect our FSI cases.
@MakisH
Copy link
Member Author

MakisH commented Jul 19, 2022

Feedback by @jheylmun: regarding the fvMeshStitcher error, it looks like a lot has changed regarding mesh motion in this release. We need to modify the dynamicMeshDict as follows:

libs ("libfvMeshStitchers.so");

mover
{
   type motionSolver;

   libs ("libfvMeshMovers.so" "libfvMotionSolvers.so");

   motionSolver displacementLaplacian;
   diffusivity quadratic inverseDistance (flap);
}

Solving this made another checkpointing-related issue pop up, which I am now investigating. (related to reading V0). For explicit coupling, the perpendicular-flap case seems to complete and results look reasonable.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant