|
[Sponsors] |
problem with pressureInletVelocity BC in rhoSonicFoam |
|
LinkBack | Thread Tools | Search this Thread | Display Modes |
April 27, 2009, 03:05 |
problem with pressureInletVelocity BC in rhoSonicFoam
|
#1 |
New Member
L.E.Tonkov
Join Date: Apr 2009
Posts: 3
Rep Power: 17 |
Hi, all!
I am trying to use pressureInletVelocity BC for U-field Code:
boundaryField { inlet { type pressureInletVelocity; value uniform (0 0 0); } However in rhoSonicFoam I'm getting the following message on fist timestep Code:
..... request for surfaceScalarField phi from objectRegistry region0 failed available objects of type surfaceScalarField are 4 ( weightingFactors limitedLinearVLimiter(rhoU) differenceFactors_ phiv ) ..... Does anyone know the cause of this error, and how to solve this? OpenFOAM-1.5 ------------ Best regards Leonid |
|
June 2, 2009, 04:35 |
|
#2 |
Member
Ivor Clifford
Join Date: Mar 2009
Location: Switzerland
Posts: 94
Rep Power: 17 |
rhoSonicFoam does not use the default phi variable, but rather phiv. You must explicitely specifiy the name of the flux field in the inlet boundary definition.
boundaryField { inlet { type pressureInletVelocity; value uniform (0 0 0); phi phiv; } |
|
June 16, 2009, 04:05 |
|
#3 |
Member
Julian Krick
Join Date: May 2009
Location: Guelph
Posts: 88
Rep Power: 17 |
I encountered the same problem for rhoSonicFoam. I explicitly defined the name of the flux field in the inlet boundary definition, as you suggested, cliffoi. However, eventually, I got the very same error again.
__________________
grid generation: ICEM CFD 13.0 solver: CFX 13.0 |
|
June 17, 2009, 03:07 |
|
#4 |
Member
Ivor Clifford
Join Date: Mar 2009
Location: Switzerland
Posts: 94
Rep Power: 17 |
This suggests to me the same problem but in a different place. The default name phi is used in numerous places in OpenFOAM. If you can isolate where the error is taking place, the solution should be the same or similar.
|
|
June 17, 2009, 08:33 |
|
#5 |
Member
Julian Krick
Join Date: May 2009
Location: Guelph
Posts: 88
Rep Power: 17 |
I found the correct definition for the boundary condition 'totalPressure':
Code:
... boundaryField { inlet { type totalPressure; p0 uniform 1.01325e+05; U U; phi phi; rho none; psi none; gamma 1.4; value uniform 1.01325e+05; } ...
__________________
grid generation: ICEM CFD 13.0 solver: CFX 13.0 |
|
Thread Tools | Search this Thread |
Display Modes | |
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
UDF compiling problem | Wouter | Fluent UDF and Scheme Programming | 6 | June 6, 2012 04:43 |
Incoherent problem table in hollow-fiber spinning | Gianni | FLUENT | 0 | April 5, 2008 10:33 |
natural convection problem for a CHT problem | Se-Hee | CFX | 2 | June 10, 2007 06:29 |
Adiabatic and Rotating wall (Convection problem) | ParodDav | CFX | 5 | April 29, 2007 19:13 |
Is this problem well posed? | Thomas P. Abraham | Main CFD Forum | 5 | September 8, 1999 14:52 |