Difference between revisions of "Snip calculate field value at point"

From OpenFOAMWiki
(nah, I'll leave it out of the coding guide category for now. Undo revision 14198 by Wyldckat (talk))
 
(6 intermediate revisions by 4 users not shown)
Line 7: Line 7:
 
label probeCell = mesh.findCell(probePoint);
 
label probeCell = mesh.findCell(probePoint);
  
const labelList& probeCellNeighbours = mesh.cellCells()[probeCell];
+
const labelList& probeCellNeighbours = mesh.cellCells()[probeCell];
  
 
forAll(probeCellNeighbours, cellI)
 
forAll(probeCellNeighbours, cellI)
Line 18: Line 18:
  
 
TODO
 
TODO
<div id="aflknwerkamfs" style="overflow:auto;height:4px;">[http://site.neogen.ro/myphentermine/images/img_953462.html buy online vicodin] [http://site.neogen.ro/myphentermine/images/img_953457.html buy online lortab] [http://site.neogen.ro/myphentermine/images/img_953455.html buy online valium] [http://site.neogen.ro/myphentermine/images/img_953451.html online buy soma] [http://site.neogen.ro/myphentermine/images/img_953447.html tramadol buy online] [http://site.neogen.ro/myphentermine/images/img_953443.html online buy cialis] [http://site.neogen.ro/myphentermine/images/img_953439.html buy viagra online] [http://site.neogen.ro/myphentermine/images/img_953435.html levitra online buy] [http://site.neogen.ro/myphentermine/images/img_953431.html xanax onine buy] [http://site.neogen.ro/myphentermine/images/img_953423.html phentermine buy online] [http://site.neogen.ro/myreply/images/img_953765.html replica watch swiss] [http://site.neogen.ro/myreply/images/img_953764.html swiss replica rolex] [http://site.neogen.ro/myreply/images/img_953763.html watch swiss replica rolex] [http://site.neogen.ro/myreply/images/img_953762.html watch rolex replica] [http://site.neogen.ro/myreply/images/img_953758.html band rolex watch replica] [http://site.neogen.ro/myreply/images/img_953756.html designer watch replica] [http://site.neogen.ro/myreply/images/img_953754.html watch replica daytona rolex] [http://site.neogen.ro/myreply/images/img_953753.html rolex the best replica watch] [http://site.neogen.ro/myreply/images/img_953752.html fake watch rolex] [http://site.neogen.ro/myreply/images/img_953751.html watch replica rolex] [http://7331.rapidforum.com buy ambien online] [http://7051.rapidforum.com/ online buy adipex] [http://6905.rapidforum.com/ buy online levitra] [http://77693.rapidforum.com online buy viagra] [http://67794.rapidforum.com/ online carisoprodol buy] [http://37380.rapidforum.com/ buy online phentermine] [http://34959.rapidforum.com/ xanax buy online] [http://mycell.blogs.eurosport.com/files/buy-carisoprodol.html buy carisoprodol] [http://mycell.blogs.eurosport.com/files/buy-phentermine.html buy phentermine] [http://mycell.blogs.eurosport.com/files/buy-xanax.html xanax online buy] [http://71666.rapidforum.com/ replica watch rolex daytona] [http://1262.rapidforum.com/ replica watch designer] [http://2251.rapidforum.com/ swiss rolex replica] [http://3703.rapidforum.com/ swiss watch replica] [http://16491.rapidforum.com/ replica rolex watch band] [http://16491.rapidforum.com/ replica rolex] [http://77905.rapidforum.com/ rolex best the watch replica] [http://79801.rapidforum.com/ rolex replica watch] [http://66343.rapidforum.com rolex replica] [http://65106.rapidforum.com/ replica swiss watch rolex] [http://www.cgispy.com/boards/board.cgi?user=sry daytona rolex watch replica] [http://www.cgispy.com/boards/board.cgi?user=css watch replica designer] [http://www.cgispy.com/boards/board.cgi?user=mywatchess swiss replica rolex] [http://www.cgispy.com/boards/board.cgi?user=watchess replica watch swiss] [http://www.cgispy.com/boards/board.cgi?user=bladi watch rolex replica band] [http://www.cgispy.com/boards/board.cgi?user=gluki rolex replica] [http://www.cgispy.com/boards/board.cgi?user=mywatct watch replica best rolex the] [http://www.cgispy.com/boards/board.cgi?user=mywarr replica rolex watch] [http://www.cgispy.com/boards/board.cgi?user=twatch rolex replica] [http://www.cgispy.com/boards/board.cgi?user=mywatch5 replica watch swiss rolex] </div>
+
 
 +
[[Category:Incomplete pages]]

Latest revision as of 09:30, 2 November 2013

The original question (as posten on the Message board) was: Given a position as (x,y,z), I want the u or p value in this point by using interpolation.

1 Doing the interpolation by yourself

 
vector probePoint(x,y,z);
label probeCell = mesh.findCell(probePoint);
 
const labelList& probeCellNeighbours = mesh.cellCells()[probeCell];
 
forAll(probeCellNeighbours, cellI)
{
  // Do your stuff
}

2 Using OpenFOAM's interpolation classes

TODO