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

Unable to retrieve anything from surfaceInterpolate function

Register Blogs Members List Search Today's Posts Mark Forums Read

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   April 14, 2022, 02:33
Wink Unable to retrieve anything from surfaceInterpolate function
  #1
Member
 
Sunag R A
Join Date: Jul 2019
Location: Bangalore, India
Posts: 82
Rep Power: 6
sunagra27 is on a distinguished road
Hi,

I am running a steady state simulation. For post-processing, I am trying to get the surfaceField using surfaceInterpolate function. Below is the functional code implemented in "system" folder. After running the simulations, I am unable to retrieve any data from it. The simulation runs correrctly.

Code:
/*--------------------------------*- C++ -*----------------------------------*\
  =========                 |
  \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
   \\    /   O peration     |
    \\  /    A nd           | Web:      www.OpenFOAM.org
     \\/     M anipulation  |
-------------------------------------------------------------------------------
Description
    Interpolates the volume field values to surface linearly.

\*---------------------------------------------------------------------------*/

surfaceInterpolate1
{
    // Mandatory entries
    type            surfaceInterpolate;
    libs            ("libfieldFunctionObjects.so");
    fields          (T TInterp);

    // Optional (inherited) entries
   
    region          patch;
    enabled         true;
    log             true;
    timeStart       0;
    timeEnd         100;
    executeControl  runTime;
    executeInterval 1;
    writeControl    runTime;
    writeInterval   1;
   
}

// ************************************************************************* //
I have added the file in the controlDict as:


Code:
functions
 {

   #includeFunc surfaceInterpolate1  //File name given in system folder
 }
Where do I look for the output?

Regards,
Sunag R A.
sunagra27 is offline   Reply With Quote

Old   March 14, 2023, 05:36
Default
  #2
New Member
 
Martin
Join Date: Jul 2022
Posts: 16
Rep Power: 3
skaal is on a distinguished road
I just had a similar issue and will document the solution I found:


In controlDict:

Code:
functions
{
    surfaceInterpolate
    {
        type            surfaceInterpolate;
        functionObjectLibs ( "libfieldFunctionObjects.so" );
        log             yes;
        writeFields     yes;
        field           p;
        result          pf;
    }

}
This will interpolate the pressure p to the surfaceScalarField pf which is then available for further processing steps.
skaal is offline   Reply With Quote

Reply

Tags
openfoam, output, postprocess, surface, surfacefields

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

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
[Other] refineWallLayer Error Yuby OpenFOAM Meshing & Mesh Conversion 2 November 11, 2021 11:04
[blockMesh] error message with modeling a cube with a hold at the center hsingtzu OpenFOAM Meshing & Mesh Conversion 2 March 14, 2012 09:56
channelFoam for a 3D pipe AlmostSurelyRob OpenFOAM 3 June 24, 2011 13:06
latest OpenFOAM-1.6.x from git failed to compile phsieh2005 OpenFOAM Bugs 25 February 9, 2010 04:37
Problem with compile the setParabolicInlet ivanyao OpenFOAM Running, Solving & CFD 6 September 5, 2008 20:50


All times are GMT -4. The time now is 10:14.