|
[Sponsors] |
![]() |
![]() |
#1 |
New Member
Andrew Godfrey
Join Date: Mar 2009
Posts: 7
Rep Power: 15 ![]() |
Where can I find the code for operator+, operator-, operator*, operator/ for, say, a volScalarField for example? Surely, these are called when building the transport equations.
Programmer's Guide v1.5 (9 July 2008) says "Algebraic operations can be performed between Fields subject to obvious restrictions such as the fields having the same number of elements" (P-29) I could re-compile Debug and step through, but can someone spare me the trouble? Thanks |
|
![]() |
![]() |
![]() |
![]() |
#2 |
Senior Member
Niels Gjoel Jacobsen
Join Date: Mar 2009
Location: Copenhagen, Denmark
Posts: 1,894
Rep Power: 35 ![]() ![]() |
Here you go. Doxygen will become your friend after a while.
http://foam.sourceforge.net/doc/Doxy...b6d65dfbddd227 Have a nice weekend, Niels |
|
![]() |
![]() |
![]() |
![]() |
#3 |
New Member
Andrew Godfrey
Join Date: Mar 2009
Posts: 7
Rep Power: 15 ![]() |
Thanks for the reply, Niels.
Please let me see if I follow the code correctly by using operator/ as an example 1) Field.C includes "FieldFunctions.C" 2) FieldFunctions.C contains the line BINARY_OPERATOR(Type, Type, scalar, /, divide) 3) BINARY_OPERATOR is defined in FieldFunctionsM.C as #define BINARY_OPERATOR(ReturnType, Type1, Type2, Op, OpFunc) part of which compiles as template<class Type> tmp<Field<Type> > operator / ( const UList<Type>& f1, const UList<scalar>& f2 ) { tmp<Field<Type> > tRes(new Field<Type>(f1.size())); divide(tRes(), f1, f2); return tRes; } 4) If that's the case, then where is divide(tRes(), f1, f2); defined? I see a version is ops.H, but I'm not sure if I follow the syntax there. Thanks |
|
![]() |
![]() |
![]() |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
Creating new user defined material | Vidya | FLUENT | 4 | August 26, 2013 10:26 |
OpenFOAM13 for Mac OSX Darwin 104 | hjasak | OpenFOAM Installation | 70 | September 24, 2010 06:06 |
Please help, Error: No FSIN boundary conditions defined in the model. | cfxuser1 | CFX | 1 | April 29, 2009 16:36 |
Gradient of a User defined Variable | Ramadas | CFX | 2 | August 21, 2007 10:19 |
User Defined Scalars - Returning Values | Carlos V. | FLUENT | 0 | April 19, 2006 19:18 |