Merge pull request #258 from Sourec/gas-fix

Fixed FIRE, SMKE, and CO2 passing through the powder-only wall.
This commit is contained in:
jacob1 2015-06-11 16:37:31 -04:00
commit e308dd73bb
3 changed files with 3 additions and 3 deletions

View File

@ -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;

View File

@ -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;

View File

@ -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;