summaryrefslogtreecommitdiff
path: root/src/simulation/elements
diff options
context:
space:
mode:
authorStanislaw Skowronek <skylark@disorder.sko>2013-11-15 23:57:44 (GMT)
committer Stanislaw Skowronek <skylark@disorder.sko>2013-11-15 23:57:44 (GMT)
commit76306f9260e519c098a312303e07be38860ef1f7 (patch)
tree6414b56a79e9abeb7540b9abb1e8e223a74f8bea /src/simulation/elements
parentba095664c0c7a1f16e3dbc05d52fe3c31095ed66 (diff)
downloadpowder-76306f9260e519c098a312303e07be38860ef1f7.zip
powder-76306f9260e519c098a312303e07be38860ef1f7.tar.gz
Fix a bug with create_part() not unlinking solids. Solids now pass through gases.
Diffstat (limited to 'src/simulation/elements')
-rw-r--r--src/simulation/elements/COAL.cpp4
-rw-r--r--src/simulation/elements/WOOD.cpp4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/simulation/elements/COAL.cpp b/src/simulation/elements/COAL.cpp
index b2cc89c..5d2c176 100644
--- a/src/simulation/elements/COAL.cpp
+++ b/src/simulation/elements/COAL.cpp
@@ -12,9 +12,9 @@ Element_COAL::Element_COAL()
Advection = 0.0f;
AirDrag = 0.00f * CFDS;
AirLoss = 0.90f;
- Loss = 0.00f;
+ Loss = 0.98f;
Collision = 0.0f;
- Gravity = 0.0f;
+ Gravity = 0.2f;
Diffusion = 0.0f;
HotAir = 0.0f * CFDS;
Falldown = 0;
diff --git a/src/simulation/elements/WOOD.cpp b/src/simulation/elements/WOOD.cpp
index 4676790..0e00780 100644
--- a/src/simulation/elements/WOOD.cpp
+++ b/src/simulation/elements/WOOD.cpp
@@ -12,9 +12,9 @@ Element_WOOD::Element_WOOD()
Advection = 0.0f;
AirDrag = 0.00f * CFDS;
AirLoss = 0.90f;
- Loss = 0.00f;
+ Loss = 0.95f;
Collision = 0.0f;
- Gravity = 0.0f;
+ Gravity = 0.1f;
Diffusion = 0.00f;
HotAir = 0.000f * CFDS;
Falldown = 0;