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

Help regarding my OpenFoam Airfoil Analysis

Register Blogs Community New Posts Updated Threads Search

Like Tree3Likes
  • 1 Post By garva_mishra
  • 1 Post By night-hawk
  • 1 Post By geth03

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   August 7, 2021, 02:55
Default Help regarding my OpenFoam Airfoil Analysis
  #1
New Member
 
GARVA MISHRA
Join Date: Aug 2021
Location: INDIA
Posts: 4
Rep Power: 4
garva_mishra is on a distinguished road
I'm new to Openfoam, but i have been using other CFD tools like simscale and simflow, Altair And many. I was trying to run a rhoSimpleFoam for an airfoil. But I am getting some error.



I would Also like to know how could i use snappyHexMesh For this.


Error I'm getting.


/mnt/e/SC_2__0714/my_airfoil$ rhoSimpleFoam
/*---------------------------------------------------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Version: 9
\\/ M anipulation |
\*---------------------------------------------------------------------------*/
Build : 9-89839ae3b8cd
Exec : rhoSimpleFoam
Date : Aug 07 2021
Time : 12:19:11
Host : "DESKTOP-6JF8QEP"
PID : 286
I/O : uncollated
Case : /mnt/e/SC_2__0714/my_airfoil
nProcs : 1
sigFpe : Enabling floating point exception trapping (FOAM_SIGFPE).
fileModificationChecking : Monitoring run-time modified files using timeStampMaster (fileModificationSkew 10)
allowSystemOperations : Allowing user-supplied system call operations

// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
Create time

Create mesh for time = 0


SIMPLE: Convergence criteria found
p: tolerance 1e-05
U: tolerance 1e-05
nuTilda: tolerance 1e-05

Reading thermophysical properties

Selecting thermodynamics package
{
type hePsiThermo;
mixture pureMixture;
transport const;
thermo hConst;
equationOfState perfectGas;
specie specie;
energy sensibleInternalEnergy;
}



--> FOAM FATAL IO ERROR:
Cannot find patchField entry for boundaries

file: /mnt/e/SC_2__0714/my_airfoil/0/T/boundaryField from line 24 to line 31.

From function void Foam::GeometricField<Type, PatchField, GeoMesh>::Boundary::readField(const Foam:imensionedField<TypeR, GeoMesh>&, const Foam::dictionary&) [with Type = double; PatchField = Foam::fvPatchField; GeoMesh = Foam::volMesh]
in file /home/ubuntu/OpenFOAM/OpenFOAM-9/src/OpenFOAM/lnInclude/GeometricBoundaryField.C at line 187.

FOAM exiting






My blockMeshDict:


/*--------------------------------*Thien Phan*-------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: phanquocthien.org |
| \\ / O peration | Files are generated by Thien Phan |
| \\ / A nd | Web: www.OpenFOAM.com |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object blockMeshDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
vertices (
(-0.5 -0.5 -0.5)
(0.5 -0.5 -0.5)
(0.5 0.5 -0.5)
(-0.5 0.5 -0.5)
(-0.5 -0.5 0.5)
(0.5 -0.5 0.5)
(0.5 0.5 0.5)
(-0.5 0.5 0.5)
);
blocks (
hex (0 1 2 3 4 5 6 7) (10 10 10) simpleGrading (1.0 1.0 1.0)
);
edges ();
boundary (
boundaries
{
type patch;
faces (
(0 4 7 3)
(2 6 5 1)
(1 5 4 0)
(3 7 6 2)
(0 3 2 1)
(4 5 6 7)
);
}
);

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



Please Help Me for this problem.


Thanks In advance.
garva_mishra is offline   Reply With Quote

Old   August 10, 2021, 01:19
Default
  #2
New Member
 
GARVA MISHRA
Join Date: Aug 2021
Location: INDIA
Posts: 4
Rep Power: 4
garva_mishra is on a distinguished road
Till now no one came forward.....
garva_mishra is offline   Reply With Quote

Old   August 10, 2021, 05:32
Default
  #3
Member
 
Ashutosh
Join Date: Jul 2021
Location: India
Posts: 75
Rep Power: 5
night-hawk is on a distinguished road
It says cannot find temperature boundary field , check Temperature boundary in 0/T.
night-hawk is offline   Reply With Quote

Old   August 10, 2021, 10:31
Default
  #4
New Member
 
GARVA MISHRA
Join Date: Aug 2021
Location: INDIA
Posts: 4
Rep Power: 4
garva_mishra is on a distinguished road
thanks a lot for the support, since I'm beginner i don't have idea of errors there i have inserted T file but is missing boundary i will fill it and try for more errors i hope you will help me.
night-hawk likes this.
garva_mishra is offline   Reply With Quote

Old   August 11, 2021, 00:43
Default
  #5
Member
 
Ashutosh
Join Date: Jul 2021
Location: India
Posts: 75
Rep Power: 5
night-hawk is on a distinguished road
I am also beginner, but I will try help you as much i can.
garva_mishra likes this.
night-hawk is offline   Reply With Quote

Old   August 11, 2021, 07:36
Default
  #6
Senior Member
 
Join Date: Dec 2019
Location: Cologne, Germany
Posts: 363
Rep Power: 8
geth03 is on a distinguished road
thats sweet, i am gonna cry, lol, joking

obviously, you did create a mesh with blockMesh and named your boundary 'boundaries', which occurs in the error message.

--> FOAM FATAL IO ERROR:
Cannot find patchField entry for boundaries

file: /mnt/e/SC_2__0714/my_airfoil/0/T/boundaryField from line 24 to line 31.

openfoam tells you that it can not find the entries in the 0-directory for the file T, which is temperature. so basically, you did not adjust the file after creating your mesh.


if you don't know how to use OF you should check this out:
https://wiki.openfoam.com/%223_weeks%22_series
garva_mishra likes this.
geth03 is offline   Reply With Quote

Old   August 16, 2021, 04:30
Default
  #7
New Member
 
GARVA MISHRA
Join Date: Aug 2021
Location: INDIA
Posts: 4
Rep Power: 4
garva_mishra is on a distinguished road
thank you so much
garva_mishra is offline   Reply With Quote

Reply

Tags
aerofoil, help in analysis, openfoam


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
SU2 AOA optimization 454514566@qq.com SU2 9 March 7, 2022 16:17
How to contribute to the community of OpenFOAM users and to the OpenFOAM technology wyldckat OpenFOAM 17 November 10, 2017 15:54
OpenFOAM 4.0 Released CFDFoundation OpenFOAM Announcements from OpenFOAM Foundation 2 October 6, 2017 05:40
OpenFOAM v3.0+ ?? SBusch OpenFOAM 22 December 26, 2016 14:24
Multi-element airfoil analysis CFD Rookie Main CFD Forum 12 November 17, 2016 06:07


All times are GMT -4. The time now is 02:00.