|
[Sponsors] | |||||
|
|
|
#1 |
|
Member
Niklas Winkler
Join Date: Mar 2009
Location: Stockholm, Stockholm, Sweden
Posts: 73
Rep Power: 6 ![]() |
Hello,
I would like to set nonuniform boundary values for the pressurefield pP from a known pressureField p, which I have done as follows for the inlet boundary, (p's boundaryType is zeroGradient at the inlet) label inletPatchID=mesh.boundaryMesh().findPatchID("inle t"); pP.boundaryField()[inletPatchID].replace(inletPatchID,p.boundaryField()[inletPat chID]); By looking at the results for pP it seems like its boundaryField at the inlet is set from the internalField of the cells closest to the boundary of p and not from the faces of these cells, which should be the true boundary. Or is the value at the internalField actually equal to the value at the boundary due to the zeroGradient BC? Could someone please give me a hint if the implementation is correct for setting the boundary values? If not, is there a better and more correct way to implement a known nonuniform boundary? All the best /NW |
|
|
|
|
|
|
|
|
#2 |
|
Senior Member
Henrik Rusche
Join Date: Mar 2009
Location: Braunschweig, Niedersachsen, Germany
Posts: 262
Rep Power: 7 ![]() |
Yes, zeroGradient will make the face value equal to the cell value.
Not sure the above is correct because it might set the value and not the boundary condition. I would recommend pP.boundaryField()[inletPatchID] == p.boundaryField()[inletPatchID]); Note the "==" and read this thread http://www.cfd-online.com/OpenFOAM_D...ges/1/202.html Henrik |
|
|
|
|
|
![]() |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Specifying nonuniform boundary condition | maka | OpenFOAM Running, Solving & CFD | 51 | November 6, 2012 07:47 |
| Nonuniform boundary syntax | juho | OpenFOAM Running, Solving & CFD | 1 | December 11, 2008 16:13 |
| Problem with nonuniform boundary conditions | qtian | OpenFOAM Pre-Processing | 2 | July 25, 2007 15:30 |
| Nonuniform gradient boundary condition | ankgupta8um | OpenFOAM Running, Solving & CFD | 1 | March 14, 2006 01:34 |
| Turbulence boundary values | lego | CFX | 9 | October 25, 2002 11:55 |