Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion applications/solvers/combustion/PDRFoam/setDeltaT.H
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Global

Description
Reset the timestep to maintain a constant maximum courant Number.
Reduction of time-step is imediate but increase is damped to avoid
Reduction of time-step is immediate but increase is damped to avoid
unstable oscillations.

\*---------------------------------------------------------------------------*/
Expand Down
2 changes: 1 addition & 1 deletion applications/solvers/multiphase/cavitatingFoam/setDeltaT.H
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Global

Description
Reset the timestep to maintain a constant maximum courant Number.
Reduction of time-step is imediate but increase is damped to avoid
Reduction of time-step is immediate but increase is damped to avoid
unstable oscillations.

\*---------------------------------------------------------------------------*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ public:

// Member Functions

//- Calculate and return the wall heat-flux partioning
//- Calculate and return the wall heat-flux partitioning
virtual tmp<scalarField> fLiquid(const scalarField& alphaLiquid) const;

virtual void write(Ostream& os) const;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ public:

// Member Functions

//- Calculate and return the wall heat-flux partioning
//- Calculate and return the wall heat-flux partitioning
virtual tmp<scalarField> fLiquid(const scalarField& alphaLiquid) const;

virtual void write(Ostream& os) const;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public:

// Member Functions

//- Calculate and return the wall heat-flux partioning
//- Calculate and return the wall heat-flux partitioning
virtual tmp<scalarField> fLiquid(const scalarField& alphaLiquid) const;
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ protected:
//- Number concentrations
List<scalar> N_;

//- Write moments up to spezified order with respect to abszissaType
//- Write moments up to specified order with respect to abszissaType
label momentOrder_;

//- Normalization switch
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,10 +88,10 @@ class NonRandomTwoLiquid
//- Non-randomness constant parameter for species 2
dimensionedScalar alpha21_;

//- Non-randomness linear paramater for species 1
//- Non-randomness linear parameter for species 1
dimensionedScalar beta12_;

//- Non-randomness linear paramater for species 2
//- Non-randomness linear parameter for species 2
dimensionedScalar beta21_;

//- Interaction parameter model for species 1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ class phaseChange
{
// Private data

//- Names of unorderd phasePairs between which phaseChange occurs, i.e.
//- Names of unordered phasePairs between which phaseChange occurs, i.e.
// "(gasIAndLiquid gasIIAndLiquid)"
List<word> pairNames_;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Description
Ramkrishna (1996). The source terms are written in a way that particle
number and mass are preserved. Coalescence (aggregation), breakup, drift
(growth and surface loss) as well as nucleation are supported.
For the discrete breakup term two recipies are available, depending on the
For the discrete breakup term two recipes are available, depending on the
model choice. For models which state a total breakup rate and a separate
daughter size distribution function, the formulation of Kumar and Ramkrishna
(1996) is applied which is applicable for binary and multiple breakup
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ Foam::twoPhaseSystem::twoPhaseSystem
pair_,
pair1In2_,
pair2In1_,
false // Do not zero drag coefficent at fixed-flux BCs
false // Do not zero drag coefficient at fixed-flux BCs
)
);

Expand Down
12 changes: 6 additions & 6 deletions applications/test/ensightFoamReader/udr_checker-80.c
Original file line number Diff line number Diff line change
Expand Up @@ -3345,7 +3345,7 @@ gold_var_loader(int var_time_step)
if(nsize > 0) {
values = (float *) calloc((nsize+1),sizeof(float));
if(values == (float *) NULL) {
fprintf(stderr,"Error: alocating variable values\n");
fprintf(stderr,"Error: allocating variable values\n");
return(Z_ERR);
}

Expand Down Expand Up @@ -3490,7 +3490,7 @@ gold_var_loader(int var_time_step)

values = (float *) calloc((nsize+1),sizeof(float));
if(values == (float *) NULL) {
fprintf(stderr,"Error: alocating variable values\n");
fprintf(stderr,"Error: allocating variable values\n");
return(Z_ERR);
}

Expand Down Expand Up @@ -4179,7 +4179,7 @@ var_loader(int var_time_step)
if(nsize > 0) {
values = (float *) calloc((num_comps * nsize),sizeof(float));
if(values == (float *) NULL) {
fprintf(stderr,"Error: alocating variable values\n");
fprintf(stderr,"Error: allocating variable values\n");
return(Z_ERR);
}

Expand Down Expand Up @@ -4240,7 +4240,7 @@ var_loader(int var_time_step)

tvalues = (float *) calloc(nsize,sizeof(float));
if(tvalues == (float *) NULL) {
fprintf(stderr,"Error: alocating tvalues array\n");
fprintf(stderr,"Error: allocating tvalues array\n");
return(Z_ERR);
}

Expand Down Expand Up @@ -4364,7 +4364,7 @@ var_loader(int var_time_step)

values = (float *) calloc((num_comps * nsize),sizeof(float));
if(values == (float *) NULL) {
fprintf(stderr,"Error: alocating variable values\n");
fprintf(stderr,"Error: allocating variable values\n");
return(Z_ERR);
}

Expand Down Expand Up @@ -4424,7 +4424,7 @@ var_loader(int var_time_step)

tvalues = (float *) calloc(nsize,sizeof(float));
if(tvalues == (float *) NULL) {
fprintf(stderr,"Error: alocating tvalues array\n");
fprintf(stderr,"Error: allocating tvalues array\n");
return(Z_ERR);
}

Expand Down
12 changes: 6 additions & 6 deletions applications/test/ensightFoamReader/udr_checker-90.c
Original file line number Diff line number Diff line change
Expand Up @@ -3806,7 +3806,7 @@ gold_var_loader(int var_time_step)
if(nsize > 0) {
values = (float *) calloc((nsize+1),sizeof(float));
if(values == (float *) NULL) {
fprintf(stderr,"Error: alocating variable values\n");
fprintf(stderr,"Error: allocating variable values\n");
return(Z_ERR);
}

Expand Down Expand Up @@ -3976,7 +3976,7 @@ gold_var_loader(int var_time_step)

values = (float *) calloc((nsize+1),sizeof(float));
if(values == (float *) NULL) {
fprintf(stderr,"Error: alocating variable values\n");
fprintf(stderr,"Error: allocating variable values\n");
return(Z_ERR);
}

Expand Down Expand Up @@ -4665,7 +4665,7 @@ var_loader(int var_time_step)
if(nsize > 0) {
values = (float *) calloc((num_comps * nsize),sizeof(float));
if(values == (float *) NULL) {
fprintf(stderr,"Error: alocating variable values\n");
fprintf(stderr,"Error: allocating variable values\n");
return(Z_ERR);
}

Expand Down Expand Up @@ -4726,7 +4726,7 @@ var_loader(int var_time_step)

tvalues = (float *) calloc(nsize,sizeof(float));
if(tvalues == (float *) NULL) {
fprintf(stderr,"Error: alocating tvalues array\n");
fprintf(stderr,"Error: allocating tvalues array\n");
return(Z_ERR);
}

Expand Down Expand Up @@ -4850,7 +4850,7 @@ var_loader(int var_time_step)

values = (float *) calloc((num_comps * nsize),sizeof(float));
if(values == (float *) NULL) {
fprintf(stderr,"Error: alocating variable values\n");
fprintf(stderr,"Error: allocating variable values\n");
return(Z_ERR);
}

Expand Down Expand Up @@ -4910,7 +4910,7 @@ var_loader(int var_time_step)

tvalues = (float *) calloc(nsize,sizeof(float));
if(tvalues == (float *) NULL) {
fprintf(stderr,"Error: alocating tvalues array\n");
fprintf(stderr,"Error: allocating tvalues array\n");
return(Z_ERR);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -759,7 +759,7 @@ int main(int argc, char *argv[])
<< endl;

// Create some default patch names/types. These will be overwritten
// by any problem desciption (if it is there)
// by any problem description (if it is there)
foamPatchTypes.setSize(foamPatchStarts.size());
foamPatchNames.setSize(foamPatchStarts.size());

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -577,7 +577,7 @@ void readDOFS
DynamicList<labelList>& dofVertices
)
{
Info<< "Starting reading contraints at line " << is.lineNumber() << '.'
Info<< "Starting reading constraints at line " << is.lineNumber() << '.'
<< endl;

string line;
Expand Down Expand Up @@ -942,7 +942,7 @@ int main(int argc, char *argv[])
Info<< "Using " << dofVertIndices.size()
<< " DOF sets to detect boundary faces."<< endl;

// Renumber vertex numbers on contraints
// Renumber vertex numbers on constraints
forAll(dofVertIndices, patchi)
{
inplaceRenumber(unvToFoam, dofVertIndices[patchi]);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -571,7 +571,7 @@ int main(int argc, char *argv[])
}


Info<< "Refining backgroud mesh according to cell size specification" << nl
Info<< "Refining background mesh according to cell size specification" << nl
<< endl;

backgroundMeshDecomposition backgroundMesh
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -941,7 +941,7 @@ int main(int argc, char *argv[])
}
else
{
// Detemines sorted back to original cell ordering
// Determines sorted back to original cell ordering
cellOrder = renumberPtr().renumber
(
mesh,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ void Foam::helpTypes::helpBoundary::execute
if (abortVar)
{
FatalErrorInFunction
<< "Please unset FOAM_ABORT to use this utlity"
<< "Please unset FOAM_ABORT to use this utility"
<< exit(FatalError);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -410,7 +410,7 @@ void Foam::vtkPVblockMesh::Update
updateFoamMesh();
reader_->UpdateProgress(0.5);

// Convert mesh elemente
// Convert mesh element
int blockNo = 0;

convertMeshCorners(output, blockNo);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -902,7 +902,7 @@ USERD_get_element_label_status

Notes:
-----
* element lables are needed in order to do any element querying, or
* element labels are needed in order to do any element querying, or
element labeling on-screen within EnSight.

For unstructured parts, you can read them from your file if
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -902,7 +902,7 @@ USERD_get_element_label_status

Notes:
-----
* element lables are needed in order to do any element querying, or
* element labels are needed in order to do any element querying, or
element labeling on-screen within EnSight.

For unstructured parts, you can read them from your file if
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Note that you do not have to update your (1.0 API) user defined reader if it
is already working fine for you.

You should consider it if:
- efficieny gains are needed or
- efficiency gains are needed or
- you need access to complex variables or
- you need access to tensor variables or
- you need multiple timeset capability or
Expand Down Expand Up @@ -345,7 +345,7 @@ USERD_get_element_ids_for_part USERD_get_part_element_ids_by_type
(Can be a dummy) -> USERD_get_model_extents
(Required) -> USERD_get_reader_version

multiple timeset releated:
multiple timeset related:
(Required) -> USERD_get_number_timesets
(Required) -> USERD_get_timeset_description
(Required) -> USERD_get_geom_timeset_number
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ called is given.
USERD_get_number_of_materials
USERD_get_matf_var_info

For each elment type of each part containing material ids, calls:
For each element type of each part containing material ids, calls:
USERD_size_matf_data
USERD_load_matf_data

Expand Down Expand Up @@ -1344,7 +1344,7 @@ USERD_get_gold_part_build_info
1 2 3 (I planes)


And note that if you were partioning this block for
And note that if you were partitioning this block for
EnSight's Server of Servers, you would only have one part,
instead of two. Each SOS server would return its appropriate
ranges in the last 6 slots. The first 3 slots would remain constant.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1063,7 +1063,7 @@ USERD_get_element_label_status

Notes:
-----
* element lables are needed in order to do any element querying, or
* element labels are needed in order to do any element querying, or
element labeling on-screen within EnSight.

For unstructured parts, you can read them from your file if
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -987,7 +987,7 @@ USERD_get_element_label_status

Notes:
-----
* element lables are needed in order to do any element querying, or
* element labels are needed in order to do any element querying, or
element labeling on-screen within EnSight.

For unstructured parts, you can read them from your file if
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1056,7 +1056,7 @@ USERD_get_element_label_status

Notes:
-----
* element lables are needed in order to do any element querying, or
* element labels are needed in order to do any element querying, or
element labeling on-screen within EnSight.

* Prior to API 2.01:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -470,7 +470,7 @@ called is given.
USERD_get_number_of_materials
USERD_get_matf_var_info

For each elment type of each part containing material ids, calls:
For each element type of each part containing material ids, calls:
USERD_size_matf_data
USERD_load_matf_data

Expand Down Expand Up @@ -1081,7 +1081,7 @@ USERD_get_element_label_status

Notes:
-----
* element lables are needed in order to do any element querying, or
* element labels are needed in order to do any element querying, or
element labeling on-screen within EnSight.

* Prior to API 2.01:
Expand Down Expand Up @@ -1430,7 +1430,7 @@ USERD_get_gold_part_build_info
1 2 3 (I planes)


And note that if you were partioning this block for
And note that if you were partitioning this block for
EnSight's Server of Servers, you would only have one part,
instead of two. Each SOS server would return its appropriate
ranges in the last 6 slots. The first 3 slots would remain constant.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ called is given.
USERD_get_number_of_materials
USERD_get_matf_var_info

For each elment type of each part containing material ids, calls:
For each element type of each part containing material ids, calls:
USERD_size_matf_data
USERD_load_matf_data

Expand Down Expand Up @@ -1344,7 +1344,7 @@ USERD_get_gold_part_build_info
1 2 3 (I planes)


And note that if you were partioning this block for
And note that if you were partitioning this block for
EnSight's Server of Servers, you would only have one part,
instead of two. Each SOS server would return its appropriate
ranges in the last 6 slots. The first 3 slots would remain constant.
Expand Down
Loading