decay_heat_with_nuclear 0.0.2 → 0.0.3
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/README.md +14 -2
- data/decay_heat_with_nuclear.gemspec +1 -1
- data/lib/decay_heat_with_nuclear/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 68dbb944aed5894828ce9042a263696bcc19a0d1
|
4
|
+
data.tar.gz: 84d36afcaf4076c50fc17392c765e52a009a4451
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c512d55e30054492138c447241f0930f3b553736370c508a4c83919df8830fee62cc7f4a990eaff3c29e7d7ad79047c91227b1be2055dd02db4b5090a2f3c30b
|
7
|
+
data.tar.gz: 1641416ad102f185ba6030355c7d1dfea6d4abaead322b264271f8784c44470bbcc5e09b9fd378f48514913cf7693667303f7434733503dd5d978381bb49b1cf
|
data/README.md
CHANGED
@@ -3,10 +3,12 @@
|
|
3
3
|
It's a easy way to get nuclear fuel decay heat when it remove from reactor core.
|
4
4
|
Using 3 method `ASB9-2`, `ANS-1973` and `ANS-1979` to calculate it.
|
5
5
|
|
6
|
-
## Install this gem
|
6
|
+
## Install this gem and require it
|
7
7
|
|
8
8
|
```
|
9
9
|
gem install decay_heat_with_nuclear
|
10
|
+
|
11
|
+
require 'decay_heat_with_nuclear'
|
10
12
|
```
|
11
13
|
|
12
14
|
|
@@ -38,7 +40,17 @@ and you will get the hash data like:
|
|
38
40
|
output_hash = {
|
39
41
|
ans1979: { ts: array, P/P0: array },
|
40
42
|
ans1973: { ts: array, P/P0: array },
|
41
|
-
asb9_2: { ts: array, P/P0: array }
|
43
|
+
asb9_2: { ts: array, P/P0: array, P/P0_without_k: array }
|
42
44
|
}
|
43
45
|
|
44
46
|
```
|
47
|
+
|
48
|
+
It's interesting about `ASB9-2`, in this [paper](http://pbadupws.nrc.gov/docs/ML0523/ML052350549.pdf):
|
49
|
+
```
|
50
|
+
In calculating the fission produce decay energy, a 20% uncertainty
|
51
|
+
factor (K) should be added for any cooling time less than 10e3 seconds,
|
52
|
+
and a factor of 10% should be added for cooling times greater than 10e3
|
53
|
+
but less than 10e7 seconds.
|
54
|
+
```
|
55
|
+
How about `ts` is greater than 10e7 sec? Therefore, using two answer.
|
56
|
+
Ths answer `P/P0` a factor of 10% should be added, and `P/P0_without_k` without 10% when `ts` is greater than 10e7 sec.
|
@@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
|
|
10
10
|
spec.email = ['demeter.yeh@gmail.com']
|
11
11
|
spec.summary = %q{It's a easy way to get nuclear fuel decay heat when it remove from reactor core.}
|
12
12
|
spec.description = %q{It's a easy way to get nuclear fuel decay heat when it remove from reactor core.}
|
13
|
-
spec.homepage = ''
|
13
|
+
spec.homepage = 'https://github.com/ccclin/decay_heat_with_nuclear'
|
14
14
|
spec.license = 'GPL3.0'
|
15
15
|
|
16
16
|
spec.files = `git ls-files -z`.split("\x0")
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: decay_heat_with_nuclear
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- C.lin
|
@@ -58,7 +58,7 @@ files:
|
|
58
58
|
- lib/decay_heat_with_nuclear/tools.rb
|
59
59
|
- lib/decay_heat_with_nuclear/version.rb
|
60
60
|
- lib/run_this.rb
|
61
|
-
homepage:
|
61
|
+
homepage: https://github.com/ccclin/decay_heat_with_nuclear
|
62
62
|
licenses:
|
63
63
|
- GPL3.0
|
64
64
|
metadata: {}
|