this is just the result of ``` find -iname "*.[ch]pp" | xargs sed -i "s/ *$//" find opm/parser/share/keywords -type f | xargs sed -i "s/ *$//" ``` so if it causes conflicts with other patches, the others should get priority. The rationale behind this patch is that some people tell their editor to remove white space which leads to larger than necessary patches...
58 lines
1.8 KiB
C++
58 lines
1.8 KiB
C++
/*
|
|
Copyright 2013 Statoil ASA.
|
|
|
|
This file is part of the Open Porous Media project (OPM).
|
|
|
|
OPM 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.
|
|
|
|
OPM 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 OPM. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef UNITSYSTEM_H
|
|
#define UNITSYSTEM_H
|
|
|
|
#include <string>
|
|
#include <map>
|
|
#include <memory>
|
|
|
|
#include <opm/parser/eclipse/Units/Dimension.hpp>
|
|
|
|
namespace Opm {
|
|
|
|
class UnitSystem {
|
|
public:
|
|
UnitSystem(const std::string& unitSystem);
|
|
const std::string& getName() const;
|
|
|
|
void addDimension(const std::string& dimension, double SIfactor, double SIoffset = 0.0);
|
|
void addDimension(std::shared_ptr<const Dimension> dimension);
|
|
std::shared_ptr<const Dimension> getNewDimension(const std::string& dimension);
|
|
std::shared_ptr<const Dimension> getDimension(const std::string& dimension) const;
|
|
bool hasDimension(const std::string& dimension) const;
|
|
bool equal(const UnitSystem& other) const;
|
|
|
|
std::shared_ptr<const Dimension> parse(const std::string& dimension) const;
|
|
|
|
static UnitSystem * newMETRIC();
|
|
static UnitSystem * newFIELD();
|
|
private:
|
|
std::shared_ptr<const Dimension> parseFactor(const std::string& dimension) const;
|
|
|
|
const std::string m_name;
|
|
std::map<std::string , std::shared_ptr<const Dimension> > m_dimensions;
|
|
};
|
|
}
|
|
|
|
|
|
#endif
|
|
|