|
[Sponsors] | |||||
|
|
|
#1 |
|
New Member
Quentin
Join Date: May 2009
Posts: 22
Rep Power: 18 ![]() |
Hi all,
in my study about a turbulent couette flow (including the energy equation for an incompressible flow) I would like to plot the heat flux in paraFoam (like U for instance). That's equivalent to plot the gradient of the temperature T. That's why I've tried to create a new field I call "gradT" which is a Volume vector Field and I've tried to solve the equation "gradT"=fvc::grad(T). But it doesn't work(It nevers works the first time ) and I receive the following error mesage:Beta.C: In function ‘int main(int, char**)’: Beta.C:140: error: no matching function for call to ‘Foam::fvMatrix<Foam::Vector<double> >::fvMatrix(Foam::tmp<Foam::GeometricField<Foam::V ector<double>, Foam::fvPatchField, Foam::volMesh> >)’ And I want to solve the following equation: fvVectorMatrix gradTEqn ( gradT - fvc::grad(T) ); gradTEqn.solve(); Maybe is there a better way to plot the gradient? I hope you will have some hints concerning my operator error message. My regards Quentin P.S: I'm not sure if that's the good section of the forum. |
|
|
|
|
|
|
|
|
#2 |
|
Senior Member
|
Hi,
Try this: Code:
volVectorField gradT
(
IOobject
(
"gradT",
runTime.timeName(),
mesh,
IOobject::NO_READ,
IOobject::AUTO_WRITE
),
fvc::grad(T)
);
Jose Santos |
|
|
|
|
|
|
|
|
#3 |
|
New Member
Quentin
Join Date: May 2009
Posts: 22
Rep Power: 18 ![]() |
Thanks Santos that was the command I required.
|
|
|
|
|
|
![]() |
| Thread Tools | Search this Thread |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| plot temperature gradient | isabel | CFX | 1 | October 6, 2008 23:51 |
| How to plot pressure gradient in Fluent? | jrg | FLUENT | 3 | November 12, 2007 05:48 |
| Adapt gradient and time plot. | Sham | FLUENT | 2 | April 14, 2005 13:43 |
| plot the gradient for scalar | tseo | FLUENT | 1 | February 20, 2004 14:15 |
| How to compute gradient for non-orthogonal grids? | Paul Hsieh | Main CFD Forum | 3 | November 11, 2003 05:52 |