trinitycrmod 0.3.10 → 0.3.11
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/VERSION +1 -1
- data/lib/trinitycrmod/graphs.rb +4 -0
- data/lib/trinitycrmod/trinity.rb +1 -1
- data/trinitycrmod.gemspec +3 -3
- 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: 75a82ccf0e47a6592c006f56cc4c5ad1b9c5b71a
|
|
4
|
+
data.tar.gz: b4e977b1ed7c57843faf3189066ce888c3d7ffb6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fd8da18810170f5360a344ca02f5c5f2e3d692d1abd3f19d5e66b470d4cbe2abb9f618b6d6e24703941ff29e3b2f32d92a1e6ffe861c856a580a2b8bcb5d6c69
|
|
7
|
+
data.tar.gz: 7f89098359613a06789432b60511c304a598edc55e416c3a5b1be5cfcccd62e72978aef1b418e714480336cc5f0b8be0e5c40cb74e3ec989846cbfcd3617730c
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.3.
|
|
1
|
+
0.3.11
|
data/lib/trinitycrmod/graphs.rb
CHANGED
|
@@ -71,6 +71,10 @@ class CodeRunner::Trinity
|
|
|
71
71
|
def eln_temp_prof_graphkit(options)
|
|
72
72
|
return nt_prof_graphkit(options.absorb({header: /e\- temp/, title: 'Te', units: 'keV'}))
|
|
73
73
|
end
|
|
74
|
+
# Graph of n against rho for a given t_index
|
|
75
|
+
def dens_graphkit(options)
|
|
76
|
+
return nt_prof_graphkit(options.absorb({header: /dens/, title: 'n', units: '10^20 m^-3'}))
|
|
77
|
+
end
|
|
74
78
|
|
|
75
79
|
# Graph of ion power integrated from the magnetic axis to rho vs rho
|
|
76
80
|
def ion_pwr_prof_graphkit(options)
|
data/lib/trinitycrmod/trinity.rb
CHANGED
|
@@ -209,7 +209,7 @@ class CodeRunner
|
|
|
209
209
|
#pp component; STDIN.gets
|
|
210
210
|
#p component.class
|
|
211
211
|
component.job_no = @job_no
|
|
212
|
-
component.status = @status
|
|
212
|
+
#component.status = @status
|
|
213
213
|
#p ["HERE2", @component_runs.size, @component_runs[i]]
|
|
214
214
|
#Dir.chdir(@directory) {
|
|
215
215
|
compdir = "flux_tube_#{i+1}"
|
data/trinitycrmod.gemspec
CHANGED
|
@@ -2,16 +2,16 @@
|
|
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
3
|
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
|
4
4
|
# -*- encoding: utf-8 -*-
|
|
5
|
-
# stub: trinitycrmod 0.3.
|
|
5
|
+
# stub: trinitycrmod 0.3.11 ruby lib
|
|
6
6
|
|
|
7
7
|
Gem::Specification.new do |s|
|
|
8
8
|
s.name = "trinitycrmod"
|
|
9
|
-
s.version = "0.3.
|
|
9
|
+
s.version = "0.3.11"
|
|
10
10
|
|
|
11
11
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
12
12
|
s.require_paths = ["lib"]
|
|
13
13
|
s.authors = ["Edmund Highcock"]
|
|
14
|
-
s.date = "2014-02-
|
|
14
|
+
s.date = "2014-02-24"
|
|
15
15
|
s.description = "This module allows Trinity, the Multiscale Gyrokinetic Turbulent Transport solver for Fusion Reactors, to harness the power of CodeRunner, a framework for the automated running and analysis of simulations."
|
|
16
16
|
s.email = "edmundhighcock@sourceforge.net"
|
|
17
17
|
s.extra_rdoc_files = [
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: trinitycrmod
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.11
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Edmund Highcock
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-02-
|
|
11
|
+
date: 2014-02-24 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: coderunner
|