|
[Sponsors] | |||||
|
|
|
#1 |
|
Member
Join Date: Jul 2012
Posts: 46
Rep Power: 2 ![]() |
I just found this tool to calculate wind pressure coefficients (works for OF1.6, OF2.0)
http://openfoamwiki.net/index.php/Contrib_wpcRAS I tried it on OF 2.1.x... did not work.. I hope that I can find a similar tool for OF 2.1.x Any ideas?? |
|
|
|
|
|
|
|
|
#2 |
|
Member
Michael Roth
Join Date: Mar 2009
Location: Guelph, Ontario, Canada
Posts: 44
Rep Power: 6 ![]() |
In readDict.H comment out all the octree stuff and replace with a single line i.e. modify as per below:
Code:
Info << "Reference Static Pressure Location = " <<
referenceStaticPressureLocation << endl;
//~ // make octree data cells
//~ const cellList& cells = mesh.cells();
//~ const pointField& points = mesh.points();
//~ treeBoundBox meshBb(points);
//~ scalar typDim = meshBb.avgDim()/(2.0*pow(cells.size(), 1.0/3.0));
//~ treeBoundBox shiftedBb
//~ (
//~ meshBb.min() - vector(typDim, typDim, typDim),
//~ meshBb.max() + vector(typDim, typDim, typDim)
//~ );
//~ octreeDataCell shapes(mesh);
//~ octree<octreeDataCell> oc
//~ (
//~ shiftedBb, // overall bounding box
//~ shapes, // all information needed to do checks on cells
//~ 1, // min. levels
//~ 10.0, // max. size of leaves
//~ 10.0 // maximum ratio of cubes v.s. cells
//~ );
// label cellRefPstat = oc.find(referenceStaticPressureLocation);
label cellRefPstat = mesh.findCell(referenceStaticPressureLocation);
Code:
#include "incompressible/RAS/RASModel/RASModel.H" //~ #include "octree.h" //~ #include "octreeDataCell.H" #include "wallFvPatch.H" |
|
|
|
|
|
![]() |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Contour of Pressure Coefficient and Velocity Vectors Colored by Pressure Coefficient | sonam | OpenFOAM | 0 | August 2, 2012 00:16 |
| Simulation of a single bubble with a VOF-method | Suzzn | CFX | 18 | October 2, 2009 04:18 |
| Automotive test case | vinz | OpenFOAM Running, Solving & CFD | 98 | October 27, 2008 09:43 |
| Calculation of the Governing Equations | Mihail | CFX | 5 | July 25, 2008 17:29 |
| Gas pressure question | Dan Moskal | Main CFD Forum | 0 | October 24, 2002 22:02 |