-
|
Hi all, I have been using some custom boundary files made from previous SOWFA simulations using the "native_boundary_plane.py" tool. However, this inflow data is for a wind tunnel, and I would prefer using just the FreeStream physics instead of ABL. Looking though the source code a bit it seems like the following functions are not available for physics methods other than ABL. Any thoughts or ideas are appreciated, thanks in advance. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
|
Hi, you are right in that the boundary planes were specifically designed for ABLs. It should be possible to adapt it to other physics cases but it would require source code modification. What you would want to do is look at ABL.H and ABL.cpp and see how In general, I can see this capability might be useful outside the ABL physics and it might make sense to make it more general. I might look into this... You can also see if you want to still use the "abl" physics but change the boundary conditions/initial conditions from the input file to do what you are aiming for. That is probably the easiest route for you right now (no coding required). Let us know if you want help with that. |
Beta Was this translation helpful? Give feedback.

Hi, you are right in that the boundary planes were specifically designed for ABLs. It should be possible to adapt it to other physics cases but it would require source code modification. What you would want to do is look at ABL.H and ABL.cpp and see how
ABLBoundaryPlaneis being used there and mimic it's usage.In general, I can see this capability might be useful outside the ABL physics and it might make sense to make it more general. I might look into this...
You can also see if you want to still use the "abl" physics but change the boundary conditions/initial conditions from the input file to do what you are aiming for. That is probably the easiest route for you right now (no coding re…