|
[Sponsors] |
September 29, 2014, 17:53 |
Undefined keyword for divergence
|
#1 |
Member
Parisa
Join Date: Feb 2013
Posts: 51
Rep Power: 13 |
Hello everyone,
The TEqn.H in my solver is as below: surfaceScalarField kappaf = twoPhaseProperties->kappaf(); fvScalarMatrix TEqn ( fvm::ddt(rhoCp, T) + fvm::div(rhoPhiCpf, T) - fvm::laplacian(kappaf, T) ); TEqn.solve(); in system/fvSchemes, I defined: div (rhophiCpf,T) Gauss upwind; However, after one iteration, I get a fatal error as: keyword div(rho*phi*Cpf,T) is undefined in dictionary. I also change the initial form of div (rhophiCpf,T) to div(rho*phi*Cpf,T), but the same error happened. That's weird because I did define the divergence. I really appreciate if you guys can help me. Best, Parisa |
|
September 30, 2014, 04:53 |
|
#2 |
Senior Member
Gerhard Holzinger
Join Date: Feb 2012
Location: Austria
Posts: 342
Rep Power: 28 |
Use
Code:
fvm::div(rhoPhiCpf, T, "div(rhoPhiCpf,T)") in your code. This way you tell OpenFOAM - via the third argument - specifically what to look for in fvSchemes. If you omit the string, then OpenFOAM creates an expression based on the operations and variables involved. If, you specify the expression, then OpenFOAM will look for exactly this expression. If you then still have trouble, the error lies elsewhere. |
|
September 30, 2014, 08:57 |
|
#3 | |
Member
Parisa
Join Date: Feb 2013
Posts: 51
Rep Power: 13 |
Dear Gerhard,
Thanks a lot for your professional help. Now, the issue has been solved by your assistance. Best, Parisa Quote:
|
||
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
Second Derivative Zero - Boundary Condition | fu-ki-pa | OpenFOAM | 11 | March 27, 2021 05:28 |
OpenFOAM 1.6-ext git installation on Ubuntu 11.10 x64 | Attesz | OpenFOAM Installation | 45 | January 13, 2012 13:38 |
Error with Wmake | skabilan | OpenFOAM Installation | 3 | July 28, 2009 01:35 |
OpenFOAM on MinGW crosscompiler hosted on Linux | allenzhao | OpenFOAM Installation | 127 | January 30, 2009 20:08 |
G95 + CGNS | Bruno | Main CFD Forum | 1 | January 30, 2007 01:34 |