|
[Sponsors] |
[OpenFOAM] Problems with CSV export in python scripting |
|
LinkBack | Thread Tools | Search this Thread | Display Modes |
June 18, 2013, 07:10 |
Problems with CSV export in python scripting
|
#1 |
Senior Member
Robert Sawko
Join Date: Mar 2009
Posts: 117
Rep Power: 22 |
Dear All,
I am trying to extract some data file into a csv file by using the following script: Code:
from paraview.simple import * foamCase = servermanager.sources.OpenFOAMReader(FileName='foam.case') view = servermanager.CreateRenderView(); myPlot=servermanager.filters.PlotOverLine(Source="High Resolution Line Source") myPlot.Source.Point1 = [0.025, 0, 0] myPlot.Source.Point2 = [0.025, 0.05, 0] myPlot.Input=foamCase myPlot.UpdatePipeline() writer = CreateWriter("./lineData.csv",myPlot) writer.FieldAssociation = 'Points' writer.UpdatePipeline() del writer Code:
ERROR: In /home/robert/download/paraview/src/ParaView-3.98.1-source/ParaViewCore/ServerManager/Core/vtkSMWriterFactory.cxx, line 377 vtkSMWriterFactory (0x1786ca0): No matching writer found for extension: csv Traceback (most recent call last): File "plot.py", line 13, in <module> writer.FieldAssociation = 'Points' AttributeError: 'NoneType' object has no attribute 'FieldAssociation' http://www.paraview.org/pipermail/pa...ry/023772.html This was filed as a bug report in 2012, but it looked to me as if it should be fixed. http://www.mail-archive.com/paraview.../msg15411.html Please let me know if you know anything more. For this minimal example sample utility will do the same job, but I need to make this work for a more complex script in paraView which will have csv as some of its output. Please let me know if this is a bug or if I am missing something. |
|
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
[Salome] Salome -> OpenFoam ( Export as unv) Problems encountered | tibo11 | OpenFOAM Meshing & Mesh Conversion | 13 | May 1, 2019 08:21 |
[ICEM] Problems with export 2D mesh from ICEM to FLUENT | newcomer | ANSYS Meshing & Geometry | 54 | September 20, 2014 13:40 |
[OpenFOAM] Paraview3 python scripting | tomislav_maric | ParaView | 1 | October 6, 2008 17:47 |
Tecplot Export Problems | Stephen | FLUENT | 2 | March 29, 2004 11:00 |
Importing I-DEAS unv file | hbetb | FLUENT | 1 | August 10, 2001 14:22 |