Skip to content

Commit

Permalink
Merge pull request #258 from Sourec/gas-fix
Browse files Browse the repository at this point in the history
Fixed FIRE, SMKE, and CO2 passing through the powder-only wall.
  • Loading branch information
jacob1 committed Jun 11, 2015
2 parents 090585a + 4e8335b commit e308dd7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/simulation/elements/CO2.cpp
Expand Up @@ -17,7 +17,7 @@ Element_CO2::Element_CO2()
Gravity = 0.1f;
Diffusion = 1.0f;
HotAir = 0.000f * CFDS;
Falldown = 1;
Falldown = 0;

Flammable = 0;
Explosive = 0;
Expand Down
2 changes: 1 addition & 1 deletion src/simulation/elements/FIRE.cpp
Expand Up @@ -17,7 +17,7 @@ Element_FIRE::Element_FIRE()
Gravity = -0.1f;
Diffusion = 0.00f;
HotAir = 0.001f * CFDS;
Falldown = 1;
Falldown = 0;

Flammable = 0;
Explosive = 0;
Expand Down
2 changes: 1 addition & 1 deletion src/simulation/elements/SMKE.cpp
Expand Up @@ -17,7 +17,7 @@ Element_SMKE::Element_SMKE()
Gravity = -0.1f;
Diffusion = 0.00f;
HotAir = 0.001f * CFDS;
Falldown = 1;
Falldown = 0;

Flammable = 0;
Explosive = 0;
Expand Down

0 comments on commit e308dd7

Please sign in to comment.