Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F90467900
surface.cc
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Fri, Nov 1, 23:12
Size
2 KB
Mime Type
text/x-c
Expires
Sun, Nov 3, 23:12 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22079743
Attached To
rLIBMULTISCALE LibMultiScale
surface.cc
View Options
/**
* @file surface.cc
*
* @author Guillaume Anciaux <guillaume.anciaux@epfl.ch>
*
* @date Tue Oct 29 18:26:07 2013
*
* @brief Pointwise defined surface
*
* @section LICENSE
*
* Copyright (©) 2010-2011 EPFL (Ecole Polytechnique Fédérale de Lausanne)
* Laboratory (LSMS - Laboratoire de Simulation en Mécanique des Solides)
*
* LibMultiScale is free software: you can redistribute it and/or modify it
* under the
* terms of the GNU Lesser General Public License as published by the Free
* Software Foundation, either version 3 of the License, or (at your option) any
* later version.
*
* LibMultiScale is distributed in the hope that it will be useful, but
* WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
* A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
* details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with LibMultiScale. If not, see <http://www.gnu.org/licenses/>.
*
*/
#include "surface.hh"
#include "lm_common.hh"
#include <iomanip>
/* -------------------------------------------------------------------------- */
__BEGIN_LIBMULTISCALE__
/* -------------------------------------------------------------------------- */
void MySurface::plotSurface() {
std::stringstream temp;
temp << "surface-fractale-" << lm_my_proc_id << ".plot";
std::ofstream file(temp.str().c_str());
file << "set xrange [0:" << size - 1 << "]" << std::endl;
file << "set yrange [0:" << size - 1 << "]" << std::endl;
file << "set zrange [-5:5]" << std::endl;
file << "unset xtics" << std::endl;
file << "unset ytics" << std::endl;
file << "unset ztics" << std::endl;
file << "set pointsize 0.5" << std::endl;
file << "splot '-' notitle w dot, '-' notitle w p pt 7 lt -1" << std::endl;
for (UInt x = 0; x < size; x++)
for (UInt y = 0; y < size; y++)
file << x << " " << y << std::setprecision(15) << std::scientific
<< heights[x + size * y] << std::endl;
file << std::endl;
}
/* -------------------------------------------------------------------------- */
__END_LIBMULTISCALE__
Event Timeline
Log In to Comment