|
[Sponsors] |
![]() |
![]() |
#1 |
Senior Member
Jian Zhong
Join Date: Feb 2012
Location: Birmingham
Posts: 109
Rep Power: 15 ![]() |
Dear foamers,
I want to define a uniform scalar (e.g alpha) with 0 in some region and 1 otherwise (may use setfields utility). Also, I just want to make these values unchanged when running the code. How to deal with that in the solver? |
|
![]() |
![]() |
![]() |
![]() |
#2 |
Senior Member
Marco A. Turcios
Join Date: Mar 2009
Location: Vancouver, BC, Canada
Posts: 740
Rep Power: 29 ![]() |
Are you trying to use this field as a source term? If you are running OF 2.1 you might be able to use the source term functionality:
http://www.openfoam.org/version2.1.0/numerics.php |
|
![]() |
![]() |
![]() |
![]() |
#3 |
Senior Member
Jian Zhong
Join Date: Feb 2012
Location: Birmingham
Posts: 109
Rep Power: 15 ![]() |
YES. My current code is :
fvVectorMatrix UEqn ( fvm::ddt(U) + fvm::div(phi, U) + turbulence->divDevReff(U) == alpha*gradP ); I defined gradP as a vector and alpha as a scalar. I want to keep alpha uniform when running as follows: defaultFieldValues ( volScalarFieldValue alpha 0 ); regions ( boxToCell { box (0 0 10) (30 10 50); fieldValues ( volScalarFieldValue alpha 1 ); } ); |
|
![]() |
![]() |
![]() |
![]() |
#4 |
Senior Member
Marco A. Turcios
Join Date: Mar 2009
Location: Vancouver, BC, Canada
Posts: 740
Rep Power: 29 ![]() |
Looks like what you have is right, so long as no transport equation is solved for alpha you're in business. Are you having trouble with the current approach as is?
|
|
![]() |
![]() |
![]() |
![]() |
#5 |
Senior Member
Jian Zhong
Join Date: Feb 2012
Location: Birmingham
Posts: 109
Rep Power: 15 ![]() |
The initial alpha is right. It seems that the next time step the value of alpha is 0. I just want to keep it as the initial value all the running time.
|
|
![]() |
![]() |
![]() |
![]() |
#6 |
Senior Member
Yogesh Bapat
Join Date: Oct 2010
Posts: 102
Rep Power: 16 ![]() |
Hello,
You might try this function in fvMatrix.H which sets values in given cells. //- Set solution in given cells to the specified values template<template<class> class ListType> void setValuesFromList ( const labelUList& cells, const ListType<Type>& values ); |
|
![]() |
![]() |
![]() |
![]() |
#7 | |
Senior Member
Jian Zhong
Join Date: Feb 2012
Location: Birmingham
Posts: 109
Rep Power: 15 ![]() |
Quote:
Many thanks. Could you tell me more about how to use the function in the fvMatrix.H? |
||
![]() |
![]() |
![]() |
![]() |
#8 |
Senior Member
Yogesh Bapat
Join Date: Oct 2010
Posts: 102
Rep Power: 16 ![]() |
Hi,
I think it takes list of cells in which you want to set values and list of values in those cells. So you have to create list of cells in which you want to set value of alpha. You have to call this function before solve function for matrix is called. Regards, -Yogesh |
|
![]() |
![]() |
![]() |
![]() |
#9 |
Senior Member
Jian Zhong
Join Date: Feb 2012
Location: Birmingham
Posts: 109
Rep Power: 15 ![]() |
Hi Yogesh,
Thanks. I have solved the problem by changing the definition of alpha in the creatalpha.H file similar to 'p'. Cheers, Jian |
|
![]() |
![]() |
![]() |
Tags |
solvers, uniform constant |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
Free jet simulation | msarkar | OpenFOAM Running, Solving & CFD | 39 | May 11, 2021 13:21 |
chtMultiRegionSimpleFoam | javad814 | OpenFOAM | 1 | September 26, 2011 13:30 |
Need help with boundary conditions: open to atmosphere | Wolle | OpenFOAM | 2 | April 11, 2011 07:32 |
rhoSimpleFoam | claco | OpenFOAM | 7 | April 20, 2010 04:32 |
RasInterFoam STRANGE RESULTS AT BOUNDARY | kumar2 | OpenFOAM Running, Solving & CFD | 8 | March 24, 2008 18:38 |