|
[Sponsors] | |||||
Negative initial temperature T0 in rhoPimpleFoam |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Display Modes |
|
|
|
#1 |
|
New Member
mohammad morovati
Join Date: Mar 2023
Posts: 1
Rep Power: 0 ![]() |
Hi,
I am trying to simulate a fan inside a canal by rhoPimpleFoam solver. Fan is rotating by w=104, and I face to negative initial temperature in 3rth part of first iteration. It would be great appreciated if someone could guide me. all files are attached |
|
|
|
|
|
|
|
|
#2 |
|
Member
Join Date: Feb 2020
Posts: 79
Rep Power: 7 ![]() |
Hi,
For compressible cases you have to limit T and U in fvOption (constant directory) : Code:
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: v2106 |
| \\ / A nd | Website: www.openfoam.com |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object fvOptions;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
/*viscousDissipation
{
type viscousDissipation;
enabled true;
}*/
limitT
{
type limitTemperature;
min 230;
max 400;
selectionMode all;
}
limitU
{
type limitVelocity;
selectionMode all;
max 400;
}
// ************************************************************************* //
Best regards, |
|
|
|
|
|
![]() |
| Tags |
| fan, rhopimplefoam |
| Thread Tools | Search this Thread |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Maximum number of iterations exceeded chtmultiregionsimpleFoam | Moncef | OpenFOAM Running, Solving & CFD | 28 | July 13, 2020 15:26 |
| Free surface issues with interDyMFoam for hydroturbine | oumnion | OpenFOAM Running, Solving & CFD | 0 | October 6, 2017 15:05 |
| Cannot run the code properly: very large time step continuity error | crst15 | OpenFOAM Running, Solving & CFD | 9 | December 14, 2014 19:17 |
| pimpleFoam: turbulence->correct(); is not executed when using residualControl | hfs | OpenFOAM Running, Solving & CFD | 3 | October 29, 2013 09:35 |
| SLTS+rhoPisoFoam: what is rDeltaT??? | nileshjrane | OpenFOAM Running, Solving & CFD | 4 | February 25, 2013 05:13 |