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

OpenFoam data files

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

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   February 12, 2010, 08:47
Question OpenFoam data files
  #1
New Member
 
Join Date: Dec 2009
Posts: 5
Rep Power: 16
chamoun is on a distinguished road
I would like to post-process OpenFoam velocity field data with Matlab. For this, I am going to use the 'points' file located in constant>polyMesh>points. I am also going to use a 'U' file. The points file containts more rows than the U file. I'm assuming this is the case because the points file contains the boundary points, while the U file does not. This presents a problem

Does anyone know what the correspondence is between these two data files? I need to know which points have which velocities, and which points are on the boundary, and which are in the interior of the boundary?

thanks!
chamoun is offline   Reply With Quote

Old   February 12, 2010, 10:15
Default
  #2
ngj
Senior Member
 
Niels Gjoel Jacobsen
Join Date: Mar 2009
Location: Copenhagen, Denmark
Posts: 1,900
Rep Power: 37
ngj will become famous soon enoughngj will become famous soon enough
The points in OpenFoam are the the corners of any computational cell, e.g. a hex-cell is made out of 8 points. The velocity is computed in the cell centres of these computational cells, hence there should not be a direct correspondence.

Use the tool "writeCellCentres" to achieve the cell centres, which corresponds to those in the velocity file.

Best regards,

Niels
ngj is offline   Reply With Quote

Old   February 15, 2010, 06:47
Default
  #3
New Member
 
Join Date: Dec 2009
Posts: 5
Rep Power: 16
chamoun is on a distinguished road
Thanks for the help. I looked up writeCellCentres.C in the documentation, but they don't have an example of how to enter it into the solver. Is this straightforward or more involved? Any help would be appreciated!

thank you
chamoun is offline   Reply With Quote

Old   February 15, 2010, 07:56
Default
  #4
ngj
Senior Member
 
Niels Gjoel Jacobsen
Join Date: Mar 2009
Location: Copenhagen, Denmark
Posts: 1,900
Rep Power: 37
ngj will become famous soon enoughngj will become famous soon enough
You cannot make it a part of the solver, as it is a stand-alone postprocessing tool. Just type writeCellCentres in the command line when you have completed the computation, and the cell centres will be written to each time directory.

Type "writeCellCentres -help" if you are unsure how to use it.

Best regards,

Niels
ngj is offline   Reply With Quote

Old   February 15, 2010, 08:53
Default
  #5
New Member
 
Join Date: Dec 2009
Posts: 5
Rep Power: 16
chamoun is on a distinguished road
Tak, Niels!
chamoun is offline   Reply With Quote

Old   April 17, 2014, 11:39
Default
  #6
New Member
 
jeicek
Join Date: Nov 2013
Location: Germany
Posts: 18
Rep Power: 12
jeicek is on a distinguished road
Hello Guys,

I typed writeCellCenters and it creates files in each time step with names of 'ccx ,ccy and ccz' but the strange thing is that the dimension of these ccx ccy ccz are only m or in other words their dimension is length and not the velocity also their values are not corresponding with U file!!!??? am I wrong?? do you have any idea?
jeicek is offline   Reply With Quote

Old   April 17, 2014, 11:51
Default
  #7
Senior Member
 
Alexey Matveichev
Join Date: Aug 2011
Location: Nancy, France
Posts: 1,930
Rep Power: 38
alexeym has a spectacular aura aboutalexeym has a spectacular aura about
Send a message via Skype™ to alexeym
Hi,

Units for coordinates of the centers of cells should be in meters. Why would they be in meters per second?
alexeym is offline   Reply With Quote

Old   April 18, 2014, 15:46
Default
  #8
New Member
 
jeicek
Join Date: Nov 2013
Location: Germany
Posts: 18
Rep Power: 12
jeicek is on a distinguished road
Hi Alexeym, then what are these 'ccx ,ccy and ccz' ?? Aren't they the velocity components in x,y and z directions in the cell center?!?!? if not then what are they?
jeicek is offline   Reply With Quote

Old   April 18, 2014, 15:47
Default
  #9
New Member
 
jeicek
Join Date: Nov 2013
Location: Germany
Posts: 18
Rep Power: 12
jeicek is on a distinguished road
Quote:
Originally Posted by alexeym View Post
Hi,

Units for coordinates of the centers of cells should be in meters. Why would they be in meters per second?
Hi Alexeym,then what are these 'ccx ,ccy and ccz' ?? Aren't they the velocity components in x,y and z directions in the cell center?!?!? if not then what are they?
jeicek is offline   Reply With Quote

Old   April 18, 2014, 16:33
Default
  #10
Senior Member
 
Alexey Matveichev
Join Date: Aug 2011
Location: Nancy, France
Posts: 1,930
Rep Power: 38
alexeym has a spectacular aura aboutalexeym has a spectacular aura about
Send a message via Skype™ to alexeym
Hi,

no, they are not. Reread the name of the utility - write cell centers. Look at the code of utility:

Code:
        for (direction i=0; i<vector::nComponents; i++)
        {
            volScalarField cci
            (
                IOobject
                (
                    "cc" + word(vector::componentNames[i]),
                    runTime.timeName(),
                    mesh,
                    IOobject::NO_READ,
                    IOobject::AUTO_WRITE
                ),
                mesh.C().component(i)
            );

            cci.write();
        }
mesh.C() is an array of cell centers (i.e. coordinates of cell centers).

If you'd like to get velocity components use foamCalc.
alexeym is offline   Reply With Quote

Old   April 20, 2014, 10:30
Default
  #11
New Member
 
jeicek
Join Date: Nov 2013
Location: Germany
Posts: 18
Rep Power: 12
jeicek is on a distinguished road
Thank you very much Alexym for clarifying, now it was cleared for me.
jeicek is offline   Reply With Quote

Old   March 10, 2016, 02:29
Default coresponding coordination of gradient filed
  #12
Senior Member
 
Elham
Join Date: Oct 2009
Posts: 184
Rep Power: 16
Elham is on a distinguished road
Hi,

I want to know the coordinates of cell centres coresponding to Ug values. Ug is gradient of U that is created by calcFvcGrad. I have used writeCellCentres to have ccx, ccy and ccz. But the number of data that I have for them is a bit more than the number of data that I have for Ug; 515618 for coordinates and 503367 for gradient.

Anyone can help me to find the right coordinate for UGrad?

Thanks
Elham is offline   Reply With Quote

Old   November 25, 2022, 22:12
Default doesn't work
  #13
Member
 
Patti Michelle Sheaffer
Join Date: Sep 2018
Posts: 55
Rep Power: 7
pattim is on a distinguished road
Hi Neils - I tried typing writeCellCentres at the linux command line (after sourcing the bashrc file for OF) and it doesn't exist. On a search, I found a directory named writeCellCentres in the subdir /usr/lib/openfoam/openfoam2112/src/functionObjects/field/ containing two files - a header and a C file. Do we have to rebuild all the utilities in that subdir before they can be used?


Please help! Thanks!

Code:
(base) patti@linux-lhkc:/OSS/Data_drive/users/00__OF_Combustion_2021-2023/n-Butane_100> setfoam 
bash@OpenFoam >>> writeCellCentres -help 
If 'writeCellCentres' is not a typo you can use command-not-found to lookup the package that contains it, like this: 
    cnf writeCellCentres 
bash@OpenFoam >>> ./writeCellCentres -help 
bash: ./writeCellCentres: No such file or directory 
bash@OpenFoam >>> 
Quote:
Originally Posted by ngj View Post
You cannot make it a part of the solver, as it is a stand-alone postprocessing tool. Just type writeCellCentres in the command line when you have completed the computation, and the cell centres will be written to each time directory.

Type "writeCellCentres -help" if you are unsure how to use it.

Best regards,

Niels
pattim is offline   Reply With Quote

Old   November 26, 2022, 06:18
Default
  #14
Senior Member
 
Join Date: Oct 2017
Posts: 118
Rep Power: 8
Krapf is on a distinguished road
In the current versions of OpenFOAM it is no longer a stand-alone application, but a function object: OpenFOAM 10, OpenFOAM v2112.
Krapf is offline   Reply With Quote

Old   November 26, 2022, 15:42
Default
  #15
Member
 
Patti Michelle Sheaffer
Join Date: Sep 2018
Posts: 55
Rep Power: 7
pattim is on a distinguished road
Thank you very much for the reply, Krapf. I thought it might be a version difference. So now I'm not sure how to use writeCellCentres in my runs. (I guess I only need it to run once)

Do I put this code example, for instance, in controDict or some other OF run file? BTW: the API guide for v2112

Code:
Usage
    Minimal example by using system/controlDict.functions:

    writeCellCentres
    {
        // Mandatory entries (unmodifiable)
        type        writeCellCentres;
        libs        (fieldFunctionObjects);

        // Optional (inherited) entries
        ...
    }
The API guide for v2112 also lists...

Minimal example by using the postProcess utility:
postProcess -func writeCellCentres

This runs with some OF screen output - but I didn't see any outputs... Hmmm,maybe I need to "reconstruct" the (parallel) case first... (runApplication -append reconstructPar)


Quote:
Originally Posted by Krapf View Post
In the current versions of OpenFOAM it is no longer a stand-alone application, but a function object: OpenFOAM 10, OpenFOAM v2112.
pattim is offline   Reply With Quote

Old   December 7, 2022, 16:03
Default help with conversion?
  #16
Member
 
Patti Michelle Sheaffer
Join Date: Sep 2018
Posts: 55
Rep Power: 7
pattim is on a distinguished road
Thank you very much - I was able to create files, but I'm not sure how to read them. They are, like the raw datafiles, mixtures of ASCII and what appears to be (compressed?) binary data. Is there a utility to convert the data to ASCII for easy reading? (I don't see such an option in postProcess -func writeCellCentres -help-full) I was able to export the written cell center data to ASCII (as ".csv" files) using paraFoam - but I was just wondering if there was a specific OF command I'm not finding.


Thanks,
PattiM

Edit: I was able to load the output of writeCellCenters into paraFoam and to write them to CSV files from paraFoam - the but number of points output by paraFoam is 12,283 points, whereas my 2D solution is on 48x126 = 6,048cells. This may arise because I'm exporting from paraFoam. Isn't there a way to output a flat acsii data file directly from OpenFoam that can be to imported into matlab/python/etc.? Anyone?


Edit2: The final fix was to use the python package "openfoamparser" - no issues with formats, etc.


Last edited by pattim; December 20, 2022 at 12:33.
pattim is offline   Reply With Quote

Reply

Tags
correspondence points, data file, points data file, post processing, u data file

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
OF 1.6 | Ubuntu 9.10 (64bit) | GLIBCXX_3.4.11 not found piprus OpenFOAM Installation 22 February 25, 2010 14:43
getting data from case and data files mkrao FLUENT 2 February 10, 2009 01:11
Converting formatted data files to unformatted mrangitschdowcom OpenFOAM Post-Processing 2 August 1, 2008 11:20
200 data files to post process (how?) Mark R FLUENT 1 August 9, 2001 14:35
[making animations] fclose fails to close files? Mika FLUENT 0 March 30, 2001 09:19


All times are GMT -4. The time now is 01:11.