|
[Sponsors] |
November 2, 2015, 06:12 |
|
#21 |
Member
Join Date: Sep 2015
Posts: 30
Rep Power: 11 |
Thanks so much! I will give it a try and update again!
|
|
November 3, 2015, 05:01 |
|
#22 | |
Member
Join Date: Sep 2015
Posts: 30
Rep Power: 11 |
Hi mkraposhin,
HELP! I've created the mesh and encountered some error in blockMesh as follows. I'm not sure if my labelling sequence in hex blocks are correct. Attached is my schematic layout, and blockMeshDict. In the schematic layout, blue ink corresponds to the hex block numbers in blockMeshDict for better reference. Quote:
Last edited by czhongrong; November 8, 2015 at 06:35. |
||
November 7, 2015, 07:03 |
|
#23 |
Senior Member
Matvey Kraposhin
Join Date: Mar 2009
Location: Moscow, Russian Federation
Posts: 355
Rep Power: 21 |
Hi,
i think, you must start by adding blocks one by one to find which block causes error. Also, you must disable all patches at this step
__________________
MDPI Fluids (Q2) special issue for OSS software: https://www.mdpi.com/journal/fluids/..._modelling_OSS GitHub: https://github.com/unicfdlab Linkedin: https://linkedin.com/in/matvey-kraposhin-413869163 RG: https://www.researchgate.net/profile/Matvey_Kraposhin |
|
November 7, 2015, 07:16 |
|
#24 |
Member
Join Date: Sep 2015
Posts: 30
Rep Power: 11 |
Erm, how can I disable patches?
|
|
November 7, 2015, 07:40 |
|
#25 |
Senior Member
Matvey Kraposhin
Join Date: Mar 2009
Location: Moscow, Russian Federation
Posts: 355
Rep Power: 21 |
Just comment everything in boundaries section
I mean here: Code:
boundary ( // // );
__________________
MDPI Fluids (Q2) special issue for OSS software: https://www.mdpi.com/journal/fluids/..._modelling_OSS GitHub: https://github.com/unicfdlab Linkedin: https://linkedin.com/in/matvey-kraposhin-413869163 RG: https://www.researchgate.net/profile/Matvey_Kraposhin |
|
November 7, 2015, 07:48 |
|
#26 |
Member
Join Date: Sep 2015
Posts: 30
Rep Power: 11 |
Thanks a lot! I'll try it out soon...
|
|
November 7, 2015, 11:41 |
|
#27 | |
Member
Join Date: Sep 2015
Posts: 30
Rep Power: 11 |
blockMesh crashed while "creating topology patches" after I blocked out "boundary", and had the following error:
Quote:
|
||
November 9, 2015, 10:46 |
|
#28 |
Senior Member
Matvey Kraposhin
Join Date: Mar 2009
Location: Moscow, Russian Federation
Posts: 355
Rep Power: 21 |
Hi, i checked your blockMeshDict and i can propose next changes
1) If you want to comment something between '(' and ')' brackets, use two slashes, for example: Code:
// inlet // { // type wall; // faces // ( // (6 5 63 92) //0 // (92 63 62 91) //1 // (91 62 61 90) //2 // (90 61 60 89) //3 // (89 60 0 9) //4 // ); // }
When you specified block 10 as Code:
hex (22 43 52 51 26 72 81 80) (30 20 20) simpleGrading (100 1 1) But in block 11 Code:
hex (53 4 52 43 82 7 81 72) (30 20 20) simpleGrading (100 1 1) So, you need to correct directions for all blocks with errors For example - see attached file
__________________
MDPI Fluids (Q2) special issue for OSS software: https://www.mdpi.com/journal/fluids/..._modelling_OSS GitHub: https://github.com/unicfdlab Linkedin: https://linkedin.com/in/matvey-kraposhin-413869163 RG: https://www.researchgate.net/profile/Matvey_Kraposhin |
|
November 10, 2015, 07:52 |
|
#29 | ||
Member
Join Date: Sep 2015
Posts: 30
Rep Power: 11 |
I've done according to what you've instructed, but now I encountered another error. Apparently, blockMesh said I have undefined faces, which I couldn't figure out as I have listed all the faces. Subsequently, checkMesh stated "Number of edges not aligned with or perpendicular to non-empty directions: 1208760".
Attached is my schematic layout (i've re-numbered my points), and my blockMeshDict. Quote:
Quote:
|
|||
November 11, 2015, 04:49 |
|
#30 |
Senior Member
Matvey Kraposhin
Join Date: Mar 2009
Location: Moscow, Russian Federation
Posts: 355
Rep Power: 21 |
Because you introduced new block, that is not connected to others. You must split this block to connect to point 4, 59, 60, 61, 62, 1. See attached jpg for example, new points are marked with red color
Also, i see that your mesh have a very large aspect ration Code:
Max aspect ratio = 580.0003633
__________________
MDPI Fluids (Q2) special issue for OSS software: https://www.mdpi.com/journal/fluids/..._modelling_OSS GitHub: https://github.com/unicfdlab Linkedin: https://linkedin.com/in/matvey-kraposhin-413869163 RG: https://www.researchgate.net/profile/Matvey_Kraposhin |
|
November 11, 2015, 04:54 |
|
#31 |
Member
Join Date: Sep 2015
Posts: 30
Rep Power: 11 |
How can I reduce the max aspect ratio? Would simpleGrading help? Because now I'm just testing the mesh with simpleGrading (1 1 1), to see if it works...
|
|
November 11, 2015, 05:17 |
|
#32 |
Senior Member
Matvey Kraposhin
Join Date: Mar 2009
Location: Moscow, Russian Federation
Posts: 355
Rep Power: 21 |
You must inrease number of discretization points in z direction for all blocks and number of discretization points for large blocks in x and y directions - blocks like 38-59-4-58.
Or, you can decrease number of discretization points in radial direction and azimuthal directions (blocks in the circle and blocks in the cross)
__________________
MDPI Fluids (Q2) special issue for OSS software: https://www.mdpi.com/journal/fluids/..._modelling_OSS GitHub: https://github.com/unicfdlab Linkedin: https://linkedin.com/in/matvey-kraposhin-413869163 RG: https://www.researchgate.net/profile/Matvey_Kraposhin |
|
November 11, 2015, 05:58 |
|
#33 |
Member
Join Date: Sep 2015
Posts: 30
Rep Power: 11 |
Thanks!! I've managed to solve the undefined patches! Now I'm trying to lower the max aspect ratio...
Thank you so much! It is of indeed great help for my project! |
|
November 13, 2015, 05:20 |
|
#34 |
Senior Member
Matvey Kraposhin
Join Date: Mar 2009
Location: Moscow, Russian Federation
Posts: 355
Rep Power: 21 |
Hi,
did your simulation converged with the new mesh?
__________________
MDPI Fluids (Q2) special issue for OSS software: https://www.mdpi.com/journal/fluids/..._modelling_OSS GitHub: https://github.com/unicfdlab Linkedin: https://linkedin.com/in/matvey-kraposhin-413869163 RG: https://www.researchgate.net/profile/Matvey_Kraposhin |
|
November 13, 2015, 05:25 |
|
#35 |
Member
Join Date: Sep 2015
Posts: 30
Rep Power: 11 |
The core processors are idling though, I will update once I got it to run...
|
|
November 13, 2015, 09:46 |
|
#36 |
Member
Join Date: Sep 2015
Posts: 30
Rep Power: 11 |
UPDATE: The simulation seems to be running well! Thanks a lot!
|
|
November 20, 2015, 00:37 |
|
#37 | |
Member
Join Date: Sep 2015
Posts: 30
Rep Power: 11 |
Hi mkraposhin,
I've encountered some problem with my simulation. It keeps getting this error. See attached for log(only an extract). It looks like it suddenly diverges. Is it a problem with my mesh? checkMesh as follows(I can only reduce my max aspect ratio to 76.8): Quote:
|
||
November 20, 2015, 05:05 |
|
#38 |
Senior Member
Matvey Kraposhin
Join Date: Mar 2009
Location: Moscow, Russian Federation
Posts: 355
Rep Power: 21 |
Hi, i think that your mesh is good.
As i undestrand, you are using transient solver (pimpleFoam?) Try next: 1) Set momentumPredictor in fvSolution->PIMPLE to false 2) Set nCorrectors to 2 3) Reduce time step at least 4 times (set maxCo to 0.5)
__________________
MDPI Fluids (Q2) special issue for OSS software: https://www.mdpi.com/journal/fluids/..._modelling_OSS GitHub: https://github.com/unicfdlab Linkedin: https://linkedin.com/in/matvey-kraposhin-413869163 RG: https://www.researchgate.net/profile/Matvey_Kraposhin |
|
November 20, 2015, 05:32 |
|
#39 | |
Member
Join Date: Sep 2015
Posts: 30
Rep Power: 11 |
Quote:
1) I do not have a "momentumPredictor" entry in fvSolution. Attached is my fvSolution file. 2) nCorrectors was initially 2. 3) Currently my deltaT is 1E-4 in controlDict, so decrease by 4x right? |
||
November 20, 2015, 05:58 |
|
#40 | ||
Senior Member
Matvey Kraposhin
Join Date: Mar 2009
Location: Moscow, Russian Federation
Posts: 355
Rep Power: 21 |
Quote:
Code:
PIMPLE { momentumPredictor false; //this disables prediction of velocity using pressures from old time step nOuterCorrectors 1; nCorrectors 2; nNonOrthogonalCorrectors 1; //must be at least one for non orthogonal case pRefCell 0; pRefValue 0; } Quote:
From the log i saw that your Co number is larger then 2. This value is acceptable for pimpleFoam, but i would recommend you to decrease time step at least 4 times. When you will be sure that stability is not dependent on time step, you can increase deltaT again (or maxCo)
__________________
MDPI Fluids (Q2) special issue for OSS software: https://www.mdpi.com/journal/fluids/..._modelling_OSS GitHub: https://github.com/unicfdlab Linkedin: https://linkedin.com/in/matvey-kraposhin-413869163 RG: https://www.researchgate.net/profile/Matvey_Kraposhin |
|||
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
Huge file sizes when Running VOF simulation | aarratia | FLUENT | 0 | May 8, 2014 13:27 |
Supersonic Nozzle Exhaust Simulation | mikeh | FLUENT | 0 | May 1, 2014 22:28 |
Exporting data of transient simulation DURING a simulation, at user locations ? | Milan2013 | CFX | 0 | April 18, 2014 04:47 |
Simulation of a complex wing in solidworks flow simulation | niels1900 | FloEFD, FloWorks & FloTHERM | 6 | April 20, 2011 11:44 |
GUI crash and simulation engine still running | RPJones | FLOW-3D | 2 | November 9, 2010 09:18 |