|
[Sponsors] |
June 1, 2014, 11:41 |
|
#21 |
Senior Member
starter
Join Date: Sep 2012
Posts: 125
Rep Power: 16 |
Dear Bruno
Many thanks for your efforts. I removed last time step to check again at 0.1008569 and same thin happened. Also I tried with 0.1008569 and 0.100857 and I got the error as double scalar. I have attached the file you asked for. Log file is 203MB so after compression, it is still big enough and cannot be attached. However tomorrow I shall try to see in my Uni what other compression software we have. If I have something which can compress more, I shall reattach. Best Regards Imad |
|
June 2, 2014, 16:52 |
|
#22 |
Retired Super Moderator
Bruno Santos
Join Date: Mar 2009
Location: Lisbon, Portugal
Posts: 10,982
Blog Entries: 45
Rep Power: 128 |
Hi Imad,
Hopefully I've figured out what the problem is! And it's one of those really annoying ones at that... OK, in post #16 you have this: Code:
Time = 0.1011976 Then in post #18 you have the following details:
In addition, the file list you provided does not follow to a fixed deltaT, which I assume is because you used "writeControl clockTime" in the first run, which lead to the time folders you have at this moment. The solution should be crazy simple: edit the file "system/controlDict" and change the timePrecision entry to 7 or 8 or even 9. I do write every once in a while here on the forum that every single detail, no matter how insignificant if may seem, is a lot more important to OpenFOAM than we might want to believe! Best regards, Bruno
__________________
|
|
June 4, 2014, 23:59 |
|
#23 |
Senior Member
starter
Join Date: Sep 2012
Posts: 125
Rep Power: 16 |
Dear Bruno
I did not come back earlier because I have modified my controlDict and am waiting for simulations to run so that I can give you some sort of feedback. Still I am waiting. As soon as I see everything is okay which I expect it to be like you do, I shall advise. Thanks again Best Regards Imad |
|
June 5, 2014, 02:05 |
|
#24 |
Senior Member
starter
Join Date: Sep 2012
Posts: 125
Rep Power: 16 |
Hi Bruno
I am experiencing same error. Code:
cannot find file [210] [210] file: /scratch/director674/shaqqi/tee/LES/75_original/processor210/0.100857/p at line 0. [210] [210] From function regIOobject::readStream() Also, log file ends in Code:
"e533.27255" "e541.5558" "e548.5864" ) Pstream initialized with: floatTransfer : 0 nProcsSimpleSum : 0 commsType : nonBlocking sigFpe : Floating point exception trapping - not supported on this platform fileModificationChecking : Monitoring run-time modified files using timeStampMaster allowSystemOperations : Disallowing user-supplied system call operations // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // Create time Create mesh for time = 0.100857 Reading field p Last edited by wyldckat; June 6, 2014 at 15:56. Reason: Added [CODE][/CODE] |
|
June 6, 2014, 16:02 |
|
#25 |
Retired Super Moderator
Bruno Santos
Join Date: Mar 2009
Location: Lisbon, Portugal
Posts: 10,982
Blog Entries: 45
Rep Power: 128 |
Hi Imad,
A few questions:
Best regards, Bruno |
|
June 8, 2014, 08:19 |
|
#26 |
Senior Member
starter
Join Date: Sep 2012
Posts: 125
Rep Power: 16 |
Hi Bruno
controlDict contents are Code:
application pisoFoam; startFrom latestTime; stopAt endTime; //stopAt nextWrite; endTime 5e-1; deltaT 1e-7; writeControl timeStep; //writeControl clockTime; writeInterval 2000; purgeWrite 10; writeFormat ascii; writePrecision 8; writeCompression off; timeFormat general; timePrecision 6; runTimeModifiable true; functions { probes { type probes; functionObjectLibs ("libsampling.so"); enabled true; outputControl timeStep; outputInterval 1; fields ( p ); probeLocations ( (0.036 2.000 0) (0.036 2.400 0) (0.036 2.600 0) (0.036 2.700 0) (0.036 2.798 0) (0.100 2.798 0) (0.300 2.798 0) (0.500 2.798 0) (1.000 2.798 0) (1.500 2.798 0) (2.000 2.798 0) (2.500 2.798 0) (3.000 2.798 0) (3.500 2.798 0) (4.000 2.798 0) (4.500 2.798 0) (-0.100 2.798 0) (-0.300 2.798 0) (-0.500 2.798 0) (-1.000 2.798 0) (-1.500 2.798 0) (-2.000 2.798 0) (-2.500 2.798 0) (-3.000 2.798 0) (-3.500 2.798 0) (-4.000 2.798 0) (-4.500 2.798 0) ); } fieldAverage1 { type fieldAverage; functionObjectLibs ("libfieldFunctionObjects.so"); enabled true; outputControl outputTime; fields ( U { mean on; prime2Mean on; base time; } p { mean on; prime2Mean on; base time; } ); } surfaceSampling { // Sample near-wall velocity type surfaces; // Where to load it from (if not already in solver) functionObjectLibs ("libsampling.so"); enabled true; outputControl outputTime; interpolationScheme cellPoint; surfaceFormat vtk; // Fields to be sampled fields ( U ); surfaces ( nearWall { type patchInternalField; patches ( lowerWall ); distance 1E-6; interpolate true; triangulate false; } ); } Answer 3: Last time step uniform/time contents are below Code:
FoamFile { version 2.0; format ascii; class dictionary; location "0.1008569/uniform"; object time; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // value 0.100857; name "0.1008569"; index 182000; deltaT 1e-07; deltaT0 1e-07; // ************************************************************************* // Thanks for your efforts and time. Regards Imad Last edited by wyldckat; June 8, 2014 at 09:01. Reason: Added [CODE][/CODE] |
|
June 8, 2014, 09:03 |
|
#27 |
Retired Super Moderator
Bruno Santos
Join Date: Mar 2009
Location: Lisbon, Portugal
Posts: 10,982
Blog Entries: 45
Rep Power: 128 |
Hi Imad,
I strongly advise you not to manually modify the time information in the time-related folders and files. Specially because you're using the time averaging procedure. Edit the file "system/controlDict" and change this line: Code:
timePrecision 6; Code:
timePrecision 8; Code:
timePrecision 9; Bruno
__________________
|
|
June 8, 2014, 10:03 |
|
#28 |
Senior Member
starter
Join Date: Sep 2012
Posts: 125
Rep Power: 16 |
Thanks Bruno
I apologize, I made writePrecision as 8 but not timePrecision by mistake. Anyways, I have corrected it. Hopefully it should work. I shall update you as soon as simulations run. Best Regards Imad |
|
June 8, 2014, 23:37 |
|
#29 |
Senior Member
starter
Join Date: Sep 2012
Posts: 125
Rep Power: 16 |
Dear Bruno
Thanks, it has worked. Best Regards Imad |
|
July 29, 2014, 10:44 |
|
#30 |
Senior Member
starter
Join Date: Sep 2012
Posts: 125
Rep Power: 16 |
Dear Bruno,
With reference to my question at link at http://www.openfoam.org/mantisbt/view.php?id=1355#c3178 I will let that question at openfoam.org stay because I need to know why the software does not write more time steps after deleting the different time step. If we together figure out a way to solve it, I shall close the query myself. I know that solving all my questions is not your responsibility but in fact people like you take out your time to guide us. I have posted the same question with more description at the link http://www.cfd-online.com/Forums/ope...tml#post503586 If you can just go through it and advise, it would be great as it can save a lot of time. For your information, my job scheduler does not provide any warning as you mentioned. I use OpenFOAM 2.1.1. I cannot find "adjustTimeStep". Regards Imad |
|
August 16, 2014, 13:50 |
|
#31 |
Retired Super Moderator
Bruno Santos
Join Date: Mar 2009
Location: Lisbon, Portugal
Posts: 10,982
Blog Entries: 45
Rep Power: 128 |
Hi Imad,
I've answered your question in the other thread. As for the last statement on this post above: It's explained in the User Guide: http://www.openfoam.org/docs/user/controlDict.php - and demonstrated in several tutorials. You can find all tutorials that use this feature by running this command: Code:
find $FOAM_TUTORIALS -name controlDict | xargs grep -sl "adjustTimeStep" Best regards, Bruno
__________________
|
|
March 20, 2015, 04:43 |
cannot find file ....buoyantBoussinesqPimpleFoam/hotcy/hotcylinderm/0/T at line 0
|
#32 |
New Member
Diana
Join Date: Dec 2014
Posts: 8
Rep Power: 11 |
Dear all,
I was trying to simulate flow through a cylinder. After run the blockMesh , I have run buoyantBoussinesqPimpleFoam. but it gave the error, -> FOAM FATAL IO ERROR: cannot find file file: /home/diana/OpenFOAM/diana-2.3.0/run/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/hotcylinderm/0/T at line 0. From function regIOobject::readStream() in file db/regIOobject/regIOobjectRead.C at line 73. FOAM exiting Since I'm new in OpenFoam it is difficult to find why this is happening . please kind to help me |
|
March 20, 2015, 05:05 |
|
#33 | |
Senior Member
|
Hello,
It looks the T file does not exist in the 0 folder of your case. This is file needed to read the boundary conditions for the temperature fields and the values of temperature. Some tutorials in OpenFOAM-2.3.0 contain T.org which you can use a template for your problem. Regards, Franjo Quote:
|
||
March 24, 2015, 00:59 |
|
#34 | |
New Member
Diana
Join Date: Dec 2014
Posts: 8
Rep Power: 11 |
Quote:
|
||
July 3, 2016, 23:16 |
|
#35 |
New Member
Sumit
Join Date: Jun 2016
Location: Pune
Posts: 2
Rep Power: 0 |
--> FOAM FATAL IO ERROR:
Cannot find patchField entry for rotatingWall1 file: /home/sumit/OpenFOAM/sumit-3.0.1/run/tutorials/incompressible/simpleFoam/generator/0/U.boundaryField from line 26 to line 75. From function GeometricField<Type, PatchField, GeoMesh>::GeometricBoundaryField::readField(const DimensionedField<Type, GeoMesh>&, const dictionary&) in file /home/openfoam/OpenFOAM/OpenFOAM-3.0.1/src/OpenFOAM/lnInclude/GeometricBoundaryField.C at line 209. FOAM exiting rotatingWall2 { type fixedValue; value uniform (0 0 0); origin (0 0 0); axis (1 0 0); omega 83.73; } rotatingWall3 { type fixedValue; value uniform (0 0 0); origin (0 0 0); axis (1 0 0); omega 83.73; } rotatingWall1 { type fixedValue; value uniform (0 0 0); origin (0 0 0); axis (1 0 0); omega 83.73; } stuck at this error from few days....any solution |
|
July 4, 2016, 05:43 |
|
#36 |
Senior Member
Join Date: Aug 2013
Posts: 407
Rep Power: 16 |
Hi,
My guess, without looking at the entire U file, is that you are missing a ; and/or a } somewhere. Cheers, Antimony |
|
July 4, 2016, 05:51 |
|
#37 |
New Member
Sumit
Join Date: Jun 2016
Location: Pune
Posts: 2
Rep Power: 0 |
i will check....thanks
|
|
November 24, 2016, 04:09 |
|
#38 |
New Member
Niranjan Prabhu
Join Date: Sep 2016
Location: chennai
Posts: 8
Rep Power: 10 |
i am facing the same problem
Reading waveProperties --> FOAM FATAL IO ERROR: cannot find file file: /home/user/OpenFOAM/user-2.4.0/run/waveFlume2/constant/waveProperties at line 0. From function regIOobject::readStream() in file db/regIOobject/regIOobjectRead.C at line 73 how to slove this problem i am running wave2foam tutorial waveFlume |
|
January 5, 2017, 14:14 |
|
#39 |
New Member
Aditya Patil
Join Date: Jan 2017
Posts: 9
Rep Power: 9 |
OpenFOAM for Windows 16.06 (v2)
Aadhi@Aditya /cygdrive/c/OpenFOAM/Aadhi-3.0.x/run $ tutorials/incompressible/icoFoam/elbow_tri -bash: tutorials/incompressible/icoFoam/elbow_tri: Is a directory Aadhi@Aditya /cygdrive/c/OpenFOAM/Aadhi-3.0.x/run $ fluentMeshToFoam.exe elbow.msh /*---------------------------------------------------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / O peration | Version: 3.0.x | | \\ / A nd | Web: www.OpenFOAM.org | | \\/ M anipulation | | |*---------------------------------------------------------------------------*| |* OpenFOAM for Windows 16.06 (v1) *| |* Built by CFD Support, www.cfdsupport.com (based on Symscape). *| \*---------------------------------------------------------------------------*/ Build : 3.0.x-ac3f6c67e02f Exec : C:\OpenFOAM\cygwin64\opt\OpenFOAM\OpenFOAM-3.0.x\platforms\cygwin64mingw-w64DPInt32Opt\bin\fluentMeshToFoam.exe elbow.msh Date : Jan 05 2017 Time : 18:11:14 Host : "ADITYA" PID : 3904 Case : C:/OpenFOAM/Aadhi-3.0.x/run nProcs : 1 fileModificationChecking : Monitoring run-time modified files using timeStampMaster allowSystemOperations : Allowing user-supplied system call operations // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // Create time --> FOAM FATAL IO ERROR: cannot find file file: C:/OpenFOAM/Aadhi-3.0.x/run/system/controlDict at line 0. From function regIOobject::readStream() in file db/regIOobject/regIOobjectRead.C at line 73. FOAM exiting Aadhi@Aditya /cygdrive/c/OpenFOAM/Aadhi-3.0.x/run $ |
|
December 14, 2017, 18:17 |
|
#40 |
New Member
alix cattermole
Join Date: Nov 2017
Posts: 14
Rep Power: 8 |
Hello,
I am trying to import a mesh from netgen to openfoam and getting the same problem you had when i use the command netgenNeutralToFoam. How did you manage to get around this error? My error -->FOAM FATAL IO ERROR cannot find file file: /home/ofuser/workingDir/openfoam-v1706/system/controlDict at line 0 I am in the openfoam-v1706 working directory when i do this. Thanks. |
|
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
[OpenFOAM.org] Compile OF 2.3 on Mac OS X .... the patch | gschaider | OpenFOAM Installation | 225 | August 25, 2015 20:43 |
simpleFoam parallel | AndrewMortimer | OpenFOAM Running, Solving & CFD | 12 | August 7, 2015 19:45 |
centOS 5.6 : paraFoam not working | yossi | OpenFOAM Installation | 2 | October 9, 2013 02:41 |
Version 15 on Mac OS X | gschaider | OpenFOAM Installation | 113 | December 2, 2009 11:23 |
DxFoam reader update | hjasak | OpenFOAM Post-Processing | 69 | April 24, 2008 02:24 |