trinitycrmod 0.6.2 → 0.6.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/VERSION +1 -1
- data/lib/trinitycrmod/trinity.rb +8 -0
- 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: 2f7b4581973038599c58beec3685a2d188da1d58
|
|
4
|
+
data.tar.gz: 44585d17f385eeb2ff30a0688d310b99ea48700e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ad02f4f5a9dcc2e1f0be9094db3ac66a67264e7f0702d931cff4ad094d171827479c649473d9ecfda3d8a1c55894e5ab5a5b658a4cdeed248a9cd939851e5e4c
|
|
7
|
+
data.tar.gz: 3ac44e2a59dd179f7a9203169ea35b0ca0cdb2eee634c4678c4f5f8e7f69d82f01b4fb236e76a6c40ac5a229204f7985ec2d90b74cd063d31fa3d0851cbcaf76
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.6.
|
|
1
|
+
0.6.3
|
data/lib/trinitycrmod/trinity.rb
CHANGED
|
@@ -154,6 +154,14 @@ class CodeRunner
|
|
|
154
154
|
FileUtils.makedirs(new_run.gs2_runs[i].directory)
|
|
155
155
|
#ep ['gs2_runs[i] before', gs2_runs[i].nwrite, new_run.gs2_runs[i].nwrite, new_run.gs2_runs[i].parameter_hash]
|
|
156
156
|
gs2_runs[i].restart(new_run.gs2_runs[i])
|
|
157
|
+
if new_run.neval_calibrate and new_run.neval_calibrate > 0 and
|
|
158
|
+
new_run.gs2_runs[i].nonlinear_mode == "off"
|
|
159
|
+
|
|
160
|
+
new_run.gs2_runs[i].init_option = "noise"
|
|
161
|
+
new_run.gs2_runs[i].delt_option = "default"
|
|
162
|
+
new_run.gs2_runs[i].is_a_restart = false
|
|
163
|
+
new_run.gs2_runs[i].restart_id = nil
|
|
164
|
+
end
|
|
157
165
|
#ep ['gs2_runs[i] after', gs2_runs[i].nwrite, new_run.gs2_runs[i].nwrite, new_run.gs2_runs[i].parameter_hash]
|
|
158
166
|
#new_run.gs2_runs[i].run_name = new_run.run_name + (i+1).to_s
|
|
159
167
|
end
|
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.6.
|
|
5
|
+
# stub: trinitycrmod 0.6.3 ruby lib
|
|
6
6
|
|
|
7
7
|
Gem::Specification.new do |s|
|
|
8
8
|
s.name = "trinitycrmod"
|
|
9
|
-
s.version = "0.6.
|
|
9
|
+
s.version = "0.6.3"
|
|
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 = "2015-02-
|
|
14
|
+
s.date = "2015-02-16"
|
|
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.6.
|
|
4
|
+
version: 0.6.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Edmund Highcock
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-02-
|
|
11
|
+
date: 2015-02-16 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: coderunner
|