tRemoved header from porosity output - sphere - GPU-based 3D discrete element method algorithm with optional fluid coupling
(HTM) git clone git://src.adamsgaard.dk/sphere
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) LICENSE
---
(DIR) commit 5cd210a9136c5c2dfee90711cedf294fc6f0484e
(DIR) parent 4bcc1be72de8c27479a909e12eb194e587ceccb7
(HTM) Author: Anders Damsgaard <adc@geo.au.dk>
Date: Tue, 18 Dec 2012 13:15:41 +0100
Removed header from porosity output
Diffstat:
M src/sphere.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
(DIR) diff --git a/src/sphere.cpp b/src/sphere.cpp
t@@ -413,7 +413,7 @@ void DEM::porosity(const int z_slices)
//writePorosities(("output/" + sid + "-porosity.txt").c_str(), z_slices, z_pos, porosity);
// Report values to stdout
- std::cout << "z-pos" << '\t' << "porosity" << '\n';
+ //std::cout << "z-pos" << '\t' << "porosity" << '\n';
for (int i = 0; i<z_slices; ++i) {
std::cout << z_pos[i] << '\t' << porosity[i] << '\n';
}