CFD Online Logo CFD Online URL
www.cfd-online.com
[Sponsors]
Home > Forums > Software User Forums > OpenFOAM > OpenFOAM Post-Processing

isoSurfaces

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   September 26, 2019, 20:45
Cool isoSurfaces
  #1
Senior Member
 
Brett
Join Date: May 2013
Posts: 212
Rep Power: 13
Bdew8556 is on a distinguished road
Hey foamers.

I'm running a simulation in parallel on 8 processors on my local PC.

I'm trying to plot a velocity isosurface for U = 11m/s
I've made a "surfaces" file in my system file:

/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: dev |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/

surfaces
{
type surfaces;
libs ("libsampling.so");
writeControl writeTime;

surfaceFormat vtk;
fields (p U);

interpolationScheme cellPoint;

surfaces
(
zNormal
{
type cuttingPlane;
planeType pointAndNormal;
pointAndNormalDict
{
point (0 0 0);
normal (0 0 1);
}
interpolate true;
}

isoU
{
type isoSurface;
isoField U;
isoValue 11;
interpolate true;
}


);
}


// ************************************************** *********************** //

I've also added to my controlDict

functions
{
#includeFunc residuals
#include "surfaces"
#include "isosurfaces"

}

I copied the "surfaces" file and called it "isosurfaces" just in case that was the issue.

I run it with the command

'C:/Program Files/Microsoft MPI/Bin/mpiexec.exe' -np 8 simpleFoam.exe -parallel 2>&1 | tee solution.log


it solves the first iteration no problem but then comes back with this:

Cannot find isosurface field U in database or directory "C:/OpenFOAM/18.10/AUBD501827-dev/run/Parkville_amended/629A/processor6/2932"


Anyone have any ideas why??
Bdew8556 is offline   Reply With Quote

Reply

Tags
openfoam, paraview, post procesing


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Clipped Isosurfaces - show volume as percent? joyoung23 ANSYS 3 November 27, 2017 16:43
Smoother isosurfaces in post processing dtmith CFX 6 April 20, 2015 18:36
[OpenFOAM] OpenFOAM/ParaView reader script for sampled VTK isosurfaces? pbachant ParaView 0 September 4, 2014 09:48
Analyze (Average values) on Isosurfaces or Sections? eRzBeNgEl Main CFD Forum 4 August 24, 2011 18:28
Isosurfaces in OF salvoblack OpenFOAM 2 April 14, 2011 08:15


All times are GMT -4. The time now is 09:05.