https://gitlab.opengeosys.org/ogs/ogs.git
Raw File
Tip revision: f786162861dfbb3fe59d248508a093daf1f87668 authored by wenqing on 25 March 2021, 10:27:59 UTC
Merge branch 'physical_constant' into 'master'
Tip revision: f786162
Adaptor.h
/**
 * \copyright
 * Copyright (c) 2012-2021, OpenGeoSys Community (http://www.opengeosys.org)
 *            Distributed under a Modified BSD License.
 *              See accompanying file LICENSE.txt or
 *              http://www.opengeosys.org/project/license
 *
 */

#pragma once

#include "BaseLib/ConfigTree.h"

namespace MeshLib {
    class Mesh;
}

namespace InSituLib {
void Initialize(BaseLib::ConfigTree const& scripts_config,
                std::string const& path);
void Finalize();
void CoProcess(MeshLib::Mesh const& mesh, double const time,
               unsigned int const timeStep, bool const lastTimeStep,
               std::string output_directory);
}
back to top