File: units.cpp

package info (click to toggle)
nmodl 0.5-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 5,308 kB
  • sloc: cpp: 27,777; javascript: 9,841; yacc: 2,815; python: 1,962; lex: 1,674; xml: 181; sh: 136; ansic: 37; makefile: 18; pascal: 7
file content (207 lines) | stat: -rw-r--r-- 7,823 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
/*************************************************************************
 * Copyright (C) 2018-2022 Blue Brain Project
 *
 * This file is part of NMODL distributed under the terms of the GNU
 * Lesser General Public License. See top-level LICENSE file for details.
 *************************************************************************/

#include <catch2/catch.hpp>

#include "ast/double.hpp"
#include "ast/factor_def.hpp"
#include "ast/program.hpp"
#include "parser/nmodl_driver.hpp"
#include "src/config/config.h"
#include "test/unit/utils/nmodl_constructs.hpp"
#include "test/unit/utils/test_utils.hpp"
#include "visitors/checkparent_visitor.hpp"
#include "visitors/units_visitor.hpp"

using namespace nmodl;
using namespace visitor;
using namespace test;
using namespace test_utils;

using nmodl::parser::NmodlDriver;

namespace {
constexpr std::size_t output_precision{8};
}

//=============================================================================
// Unit visitor tests
//=============================================================================

std::string run_units_visitor(const std::string& text) {
    NmodlDriver driver;
    driver.parse_string(text);
    const auto& ast = driver.get_ast();

    // Parse nrnunits.lib file and the UNITS block of the mod file
    const std::string units_lib_path(NrnUnitsLib::get_path());
    UnitsVisitor units_visitor = UnitsVisitor(units_lib_path);

    units_visitor.visit_program(*ast);

    // Keep the UnitTable created from parsing unit file and UNITS
    // block of the mod file
    parser::UnitDriver units_driver = units_visitor.get_unit_driver();
    std::shared_ptr<units::UnitTable> unit_table = units_driver.table;

    std::stringstream ss;

    // Visit AST to find all the ast::UnitDef nodes to print their
    // unit names, factors and dimensions as they are calculated in
    // the units::UnitTable
    const auto& unit_defs = collect_nodes(*ast, {ast::AstNodeType::UNIT_DEF});

    for (const auto& unit_def: unit_defs) {
        auto unit_name = unit_def->get_node_name();
        unit_name.erase(remove_if(unit_name.begin(), unit_name.end(), isspace), unit_name.end());
        auto unit = units_driver.table->get_unit(unit_name);
        ss << std::fixed << std::setprecision(output_precision) << unit->get_name() << ' '
           << unit->get_factor() << ':';
        // Dimensions of the unit are printed to check that the units are successfully
        // parsed to the units::UnitTable
        int dimension_id = 0;
        auto constant = true;
        for (const auto& dimension: unit->get_dimensions()) {
            if (dimension != 0) {
                constant = false;
                ss << ' ' << units_driver.table->get_base_unit_name(dimension_id) << dimension;
            }
            dimension_id++;
        }
        if (constant) {
            ss << " constant";
        }
        ss << '\n';
    }

    // Visit AST to find all the ast::FactorDef nodes to print their
    // unit names, factors and dimensions as they are calculated to
    // be printed to the produced .cpp file
    const auto& factor_defs = collect_nodes(*ast, {ast::AstNodeType::FACTOR_DEF});
    for (const auto& factor_def: factor_defs) {
        auto unit = units_driver.table->get_unit(factor_def->get_node_name());
        ss << std::fixed << std::setprecision(output_precision) << unit->get_name() << ' ';
        auto factor_def_class = std::dynamic_pointer_cast<const nmodl::ast::FactorDef>(factor_def);
        ss << factor_def_class->get_value()->eval() << ':';
        // Dimensions of the unit are printed to check that the units are successfully
        // parsed to the units::UnitTable
        int dimension_id = 0;
        auto constant = true;
        for (const auto& dimension: unit->get_dimensions()) {
            if (dimension != 0) {
                constant = false;
                ss << ' ' << units_driver.table->get_base_unit_name(dimension_id);
                ss << dimension;
            }
            dimension_id++;
        }
        if (constant) {
            ss << " constant";
        }
        ss << '\n';
    }

    // check that, after visitor rearrangement, parents are still up-to-date
    CheckParentVisitor().check_ast(*ast);

    return ss.str();
}


SCENARIO("Parse UNITS block of mod files using Units Visitor", "[visitor][units]") {
    GIVEN("UNITS block with different cases of units definitions") {
        static const std::string nmodl_text = R"(
            UNITS {
                (nA)    = (nanoamp)
                (mA)    = (milliamp)
                (mV)    = (millivolt)
                (uS)    = (microsiemens)
                (nS)    = (nanosiemens)
                (pS)    = (picosiemens)
                (umho)  = (micromho)
                (um)    = (micrometers)
                (mM)    = (milli/liter)
                (uM)    = (micro/liter)
                (msM) = (ms mM)
                (fAm) = (femto amp meter)
                (mol) = (1)
                (M) = (1/liter)
                (uM1) = (micro M)
                (mA/cm2) = (nanoamp/cm2)
                (molar) = (1 / liter)
                (S ) = (siemens)
                (mse-1) = (1/millisec)
                (um3) = (liter/1e15)
                (molar1) = (/liter)
                (degK) = (degC)
                FARADAY1 = (faraday) (coulomb)
                FARADAY2 = (faraday) (kilocoulombs)
                FARADAY3 = (faraday) (10000 coulomb)
                PI      = (pi)      (1)
                R1       = (k-mole)  (joule/degC)
                R2 = 8.314 (volt-coul/degC)
                R3 = (mole k) (mV-coulomb/degC)
                R4 = 8.314 (volt-coul/degK)
                R5 = 8.314500000000001 (volt coul/kelvin)
                dummy1  = 123.45    (m 1/sec2)
                dummy2  = 123.45e3  (millimeters/sec2)
                dummy3  = 12345e-2  (m/sec2)
                KTOMV = 0.0853 (mV/degC)
                B = 0.26 (mM-cm2/mA-ms)
                TEMP = 25 (degC)
            }
        )";

        static const std::string output_nmodl = R"(
        nA 0.00000000: sec-1 coul1
        mA 0.00100000: sec-1 coul1
        mV 0.00100000: m2 kg1 sec-2 coul-1
        uS 0.00000100: m-2 kg-1 sec1 coul2
        nS 0.00000000: m-2 kg-1 sec1 coul2
        pS 0.00000000: m-2 kg-1 sec1 coul2
        umho 0.00000100: m-2 kg-1 sec1 coul2
        um 0.00000100: m1
        mM 1.00000000: m-3
        uM 0.00100000: m-3
        msM 0.00100000: m-3 sec1
        fAm 0.00000000: m1 sec-1 coul1
        mol 1.00000000: constant
        M 1000.00000000: m-3
        uM1 0.00100000: m-3
        mA/cm2 0.00001000: m-2 sec-1 coul1
        molar 1000.00000000: m-3
        S 1.00000000: m-2 kg-1 sec1 coul2
        mse-1 1000.00000000: sec-1
        um3 0.00100000: m3
        molar1 1000.00000000: m-3
        degK 1.00000000: K1
        FARADAY1 96485.3321233100141: coul1
        FARADAY2 96.4853321233100161: coul1
        FARADAY3 9.64853321233100125: coul1
        PI 3.14159265358979312: constant
        R1 8.3144626181532395: m2 kg1 sec-2 K-1
        R2 8.314: m2 kg1 sec-2 K-1
        R3 8314.46261815323851: m2 kg1 sec-2 K-1
        R4 8.314: m2 kg1 sec-2 K-1
        R5 8.314500000000001: m2 kg1 sec-2 K-1
        dummy1 123.45: m1 sec-2
        dummy2 123.45e3: m1 sec-2
        dummy3 12345e-2: m1 sec-2
        KTOMV 0.0853: m2 kg1 sec-2 coul-1 K-1
        B 0.26: m-1 coul-1
        TEMP 25: K1
        )";

        THEN("Print the units that were added") {
            const std::string input(reindent_text(nmodl_text));
            auto expected_result = reindent_text(output_nmodl);
            auto result = run_units_visitor(input);
            auto reindented_result = reindent_text(result);
            REQUIRE(reindented_result == expected_result);
        }
    }
}