Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Development
openfoam
Commits
35f74367
Commit
35f74367
authored
May 19, 2010
by
sergio
Browse files
ENH: Functions made public to be used by setKsCsField application
parent
2abeb6a7
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/finiteVolume/fields/fvPatchFields/derived/timeVaryingMappedFixedValue/timeVaryingMappedFixedValueFvPatchField.H
View file @
35f74367
...
...
@@ -110,13 +110,11 @@ class timeVaryingMappedFixedValueFvPatchField
label
&
hi
)
const
;
//- Read boundary points and determine interpolation weights to patch
// faceCentres
void
readSamplePoints
();
//- Find boundary data inbetween current time and interpolate
void
checkTable
();
//- Do actual interpolation using current weights
tmp
<
Field
<
Type
>
>
interpolate
(
const
Field
<
Type
>&
)
const
;
...
...
@@ -199,6 +197,12 @@ public:
return
referenceCS_
;
}
//- Return startSampledValues
const
Field
<
Type
>
startSampledValues
()
{
return
startSampledValues_
;
}
// Mapping functions
...
...
@@ -216,6 +220,12 @@ public:
);
// Utility functions
//- Find boundary data inbetween current time and interpolate
void
checkTable
();
// Evaluation functions
//- Update the coefficients associated with the patch field
...
...
src/turbulenceModels/incompressible/RAS/derivedFvPatchFields/wallFunctions/nutWallFunctions/nutkRoughWallFunction/nutkRoughWallFunctionFvPatchScalarField.H
View file @
35f74367
...
...
@@ -152,6 +152,21 @@ public:
// Member functions
// Acces functions
// Return Ks
scalarField
&
Ks
()
{
return
Ks_
;
}
// Return Cs
scalarField
&
Cs
()
{
return
Cs_
;
}
// Mapping functions
//- Map (and resize as needed) from self given a mapping object
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment