unit_measurements 3.7.0 → 3.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +9 -0
- data/Gemfile.lock +1 -1
- data/lib/unit_measurements/unit_groups/all.rb +2 -0
- data/lib/unit_measurements/unit_groups/inductance.rb +19 -0
- data/lib/unit_measurements/unit_groups/magnetic_field.rb +13 -0
- data/lib/unit_measurements/version.rb +1 -1
- data/units.md +20 -0
- metadata +4 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d1f5b33a4d36085c2a15c637a565132cfa411810b29272bac86e079892a7c8ee
|
4
|
+
data.tar.gz: db220a3d6272793892f82d1bcb3a8ecea8e499792230403318ce18566fc5afa0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7cfa24b914b602f492657014bacdd4ebb445c412aa06a99b73adb43c5e5f7c92213677c7b7487d7750f20e1877d83a5385cd57b1c29217993d774c40893ad7a6
|
7
|
+
data.tar.gz: c5f3e296d5c475889350139ef26830983d9515394ee8885854df32cfc6c27ec4f4ccb22e676637df557dbb827d6ecec04ebf3bbe7d7e9418fc1107b6258d4a68
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,12 @@
|
|
1
|
+
## [3.8.0](https://github.com/shivam091/unit_measurements/compare/v3.7.0...v3.8.0) - 2023-10-02
|
2
|
+
|
3
|
+
### What's new
|
4
|
+
|
5
|
+
- Added unit group for `magnetic field` units.
|
6
|
+
- Added unit group for `inductance` units.
|
7
|
+
|
8
|
+
----------
|
9
|
+
|
1
10
|
## [3.7.0](https://github.com/shivam091/unit_measurements/compare/v3.6.0...v3.7.0) - 2023-10-01
|
2
11
|
|
3
12
|
### What's new
|
data/Gemfile.lock
CHANGED
@@ -0,0 +1,19 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
# -*- frozen_string_literal: true -*-
|
3
|
+
# -*- warn_indent: true -*-
|
4
|
+
|
5
|
+
UnitMeasurements::Inductance = UnitMeasurements.build do
|
6
|
+
system :metric do
|
7
|
+
primitive :H
|
8
|
+
|
9
|
+
si_unit :H, aliases: [:henry, :henries]
|
10
|
+
unit :"Wb/A", value: "1 H", aliases: [:"Wb·A⁻¹", :"weber per ampere", :"webers per ampere"]
|
11
|
+
end
|
12
|
+
|
13
|
+
system :centimetre_gram_second do
|
14
|
+
primitive :abH
|
15
|
+
|
16
|
+
unit :abH, value: "1e-9 H", aliases: [:abhenry, :abhenries]
|
17
|
+
unit :statH, value: "8.98755178736818e+11 H", aliases: [:stathenry, :stathenries]
|
18
|
+
end
|
19
|
+
end
|
@@ -0,0 +1,13 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
# -*- frozen_string_literal: true -*-
|
3
|
+
# -*- warn_indent: true -*-
|
4
|
+
|
5
|
+
UnitMeasurements::MagneticField = UnitMeasurements.build do
|
6
|
+
system :metric do
|
7
|
+
primitive :Oe
|
8
|
+
|
9
|
+
si_unit :Oe, aliases: [:oersted, :oersteds]
|
10
|
+
|
11
|
+
unit :"A/m", value: [(Math::PI / 250), :Oe], aliases: [:"A·m⁻¹", :"ampere/meter", :"ampere/metre", :"ampere per meter", :"ampere per metre", :"amperes per meter", :"amperes per metre"]
|
12
|
+
end
|
13
|
+
end
|
data/units.md
CHANGED
@@ -334,3 +334,23 @@ These units are defined in `UnitMeasurements::MagneticInduction`.
|
|
334
334
|
|:--|:--|:--|
|
335
335
|
| 1 | T* | tesla, teslas |
|
336
336
|
| 2 | G | Gs, gauss, gausses |
|
337
|
+
|
338
|
+
## 28. Magnetic field
|
339
|
+
|
340
|
+
These units are defined in `UnitMeasurements::MagneticField`.
|
341
|
+
|
342
|
+
| # | Name | Aliases |
|
343
|
+
|:--|:--|:--|
|
344
|
+
| 1 | Oe* | oersted, oersteds |
|
345
|
+
| 2 | A/m | A·m⁻¹, ampere/meter, ampere/metre, ampere per meter, ampere per metre, amperes per meter, amperes per metre |
|
346
|
+
|
347
|
+
## 29. Inductance
|
348
|
+
|
349
|
+
These units are defined in `UnitMeasurements::Inductance`.
|
350
|
+
|
351
|
+
| # | Name | Aliases |
|
352
|
+
|:--|:--|:--|
|
353
|
+
| 1 | H* | henry, henries |
|
354
|
+
| 2 | abH | abhenry, abhenries |
|
355
|
+
| 3 | statH | stathenry, stathenries |
|
356
|
+
| 4 | Wb/A | Wb·A⁻¹, weber per ampere, webers per ampere |
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: unit_measurements
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.
|
4
|
+
version: 3.8.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Harshal LADHE
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-10-
|
11
|
+
date: 2023-10-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|
@@ -131,8 +131,10 @@ files:
|
|
131
131
|
- lib/unit_measurements/unit_groups/electric_charge.rb
|
132
132
|
- lib/unit_measurements/unit_groups/electric_current.rb
|
133
133
|
- lib/unit_measurements/unit_groups/force.rb
|
134
|
+
- lib/unit_measurements/unit_groups/inductance.rb
|
134
135
|
- lib/unit_measurements/unit_groups/length.rb
|
135
136
|
- lib/unit_measurements/unit_groups/luminous_intensity.rb
|
137
|
+
- lib/unit_measurements/unit_groups/magnetic_field.rb
|
136
138
|
- lib/unit_measurements/unit_groups/magnetic_flux.rb
|
137
139
|
- lib/unit_measurements/unit_groups/magnetic_induction.rb
|
138
140
|
- lib/unit_measurements/unit_groups/plane_angle.rb
|