Skip to content

Commit c1ecc8f

Browse files
committed
improved responsiveness
1 parent e4b8b55 commit c1ecc8f

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

Project.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "MeasureSystems"
22
uuid = "ea45d09e-59d0-491b-a101-09823c6a9fd4"
33
authors = ["Michael Reed"]
4-
version = "0.2.0"
4+
version = "0.2.1"
55

66
[deps]
77
Similitude = "d70e672a-ff44-4dfc-8031-4cc812d84922"
@@ -15,7 +15,7 @@ FieldConstants = "0.1"
1515
FieldAlgebra = "0.1"
1616
Measurements = "2"
1717
UnitSystems = "0.3.8"
18-
Similitude = "0.3"
18+
Similitude = "0.3.1"
1919
julia = "1"
2020

2121
[extras]

src/MeasureSystems.jl

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -394,7 +394,11 @@ end
394394

395395
import UnitSystems: GaussSystem, ElectricSystem, EntropySystem, AstronomicalSystem, unitname, normal
396396
println("MeasureSystems: initializing UnitSystems data")
397-
include("$dir/initdata.jl")
397+
if !usingSimilitude || CONSTVAL
398+
include("$dir/initdata.jl")
399+
else
400+
Similitude.includereplace(MeasureSystems,"$dir/initdata.jl")
401+
end
398402

399403
#const μ₀ = 2𝘩/𝘤/αinv/𝘦^2 # ≈ 4π*(1e-7+5.5e-17), exact charge
400404
const δμ₀ = μ₀-4π*1e-7

0 commit comments

Comments
 (0)