Fixed name clash for Y[0]: deleted from objectRegistry
This commit is contained in:
parent
a84fff7b48
commit
92e0e64f01
6 changed files with 6 additions and 6 deletions
|
@ -12,7 +12,7 @@ tmp<fv::convectionScheme<scalar> > mvConvection
|
|||
{
|
||||
|
||||
label inertIndex = -1;
|
||||
volScalarField Yt = 0.0*Y[0];
|
||||
volScalarField Yt("Yt", 0.0*Y[0]);
|
||||
|
||||
for (label i = 0; i < Y.size(); i++)
|
||||
{
|
||||
|
|
|
@ -11,7 +11,7 @@ tmp<fv::convectionScheme<scalar> > mvConvection
|
|||
|
||||
{
|
||||
label inertIndex = -1;
|
||||
volScalarField Yt = 0.0*Y[0];
|
||||
volScalarField Yt("Yt", 0.0*Y[0]);
|
||||
|
||||
for (label i = 0; i < Y.size(); i++)
|
||||
{
|
||||
|
|
|
@ -11,7 +11,7 @@ tmp<fv::convectionScheme<scalar> > mvConvection
|
|||
|
||||
{
|
||||
label inertIndex = -1;
|
||||
volScalarField Yt = 0.0*Y[0];
|
||||
volScalarField Yt("Yt", 0.0*Y[0]);
|
||||
|
||||
for (label i=0; i<Y.size(); i++)
|
||||
{
|
||||
|
|
|
@ -12,7 +12,7 @@ tmp<fv::convectionScheme<scalar> > mvConvection
|
|||
|
||||
{
|
||||
label inertIndex = -1;
|
||||
volScalarField Yt = 0.0*Y[0];
|
||||
volScalarField Yt("Yt", 0.0*Y[0]);
|
||||
|
||||
forAll(Y, i)
|
||||
{
|
||||
|
|
|
@ -13,7 +13,7 @@ tmp<fv::convectionScheme<scalar> > mvConvection
|
|||
|
||||
{
|
||||
label inertIndex = -1;
|
||||
volScalarField Yt = 0.0*Y[0];
|
||||
volScalarField Yt("Yt", 0.0*Y[0]);
|
||||
|
||||
forAll(Y, i)
|
||||
{
|
||||
|
|
|
@ -12,7 +12,7 @@ tmp<fv::convectionScheme<scalar> > mvConvection
|
|||
|
||||
{
|
||||
label inertIndex = -1;
|
||||
volScalarField Yt = 0.0*Y[0];
|
||||
volScalarField Yt("Yt", 0.0*Y[0]);
|
||||
|
||||
forAll(Y, i)
|
||||
{
|
||||
|
|
Reference in a new issue