|
Fluid Dynamics Library
|
#include <boost/program_options.hpp>#include <boost/thread.hpp>#include <boost/signal.hpp>#include <boost/bind.hpp>#include <boost/format.hpp>#include <iostream>#include <algorithm>#include <iterator>#include <fstream>#include <string>#include <vector>#include <stdexcept>#include <cfloat>#include <cmath>#include <vlCore/VisualizationLibrary.hpp>#include <vlGLUT/GLUTWindow.hpp>#include <vlCore/VLSettings.hpp>#include "core/fluidsolver.h"#include "core/grid.hpp"#include "io/pngexporter.h"#include "io/df3exporter.h"#include "io/pbrtexporter.h"#include "io/importerbase.h"#include "logger/logger.h"#include "logger/stdiowriter.h"#include "logger/syslogwriter.h"#include "core/common.h"#include "core/macsmoke.hpp"#include "core/inssmoke.hpp"#include "core/fields.hpp"#include "core/scalars.hpp"#include "core/volumerender.hpp"#include "render/glutapp.h"#include "render/drawable.h"Go to the source code of this file.
Defines | |
| #define | TARGET_VERSION_MAJOR 99 |
| #define | TARGET_VERSION_MINOR 99 |
Functions | |
| template<class T > | |
| std::ostream & | operator<< (std::ostream &os, const std::vector< T > &v) |
| void | simulateSmoke () |
| int | main (int argc, char **argv) |
Variables | |
| static fdl::MACSmoke< float > * | grid |
| static fdl::INSSmoke< float > * | solver |
| vl::ref< fdl::VolumeRenderer > | applet |
| static int | counter = 0 |
FDL - Fluid Dynamics Library Copyright (C) 2011 by Caleb Johnston
This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
This program 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 General Public License for more details.
You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>.
Definition in file main.cpp.
| int main | ( | int | argc, |
| char ** | argv | ||
| ) |
1.7.4