Merge pull request #40 from PhasicFlow/tutorials

action -> operation
This commit is contained in:
PhasicFlow 2022-10-10 12:55:09 +03:30 committed by GitHub
commit c0f070ac76
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -21,7 +21,7 @@ numberBased
numParticles numParticles
{ {
field real 1.0; // uniform field with value 1 field real 1.0; // uniform field with value 1
action sum; // sum over all particles in a cell operation sum; // sum over all particles in a cell
includeMask all; // select all includeMask all; // select all
} }
@ -29,7 +29,7 @@ numberBased
smallConc smallConc
{ {
field real 1.0; // uniform field with value 1 field real 1.0; // uniform field with value 1
action average; // average over all particles in a cell operation average; // average over all particles in a cell
threshold 1; // exclude cells with number of particles less than 1 threshold 1; // exclude cells with number of particles less than 1
includeMask lessThan; // include mask includeMask lessThan; // include mask
lessThanInfo lessThanInfo
@ -43,7 +43,7 @@ numberBased
avVelocity avVelocity
{ {
field velocity; // read velocity field from time folder field velocity; // read velocity field from time folder
action average; // average over all particles in the cell operation average; // average over all particles in the cell
threshold 3; // exclude cells with number of particles less than 3 threshold 3; // exclude cells with number of particles less than 3
includeMask all; // select all includeMask all; // select all