tokfile 0.0.8 → 0.0.9
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/tokfile/eqdsk.rb +2 -2
- data/tokfile.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: 726f5801b42841fa81e3ff4203bc469c8ef2b4fc
|
|
4
|
+
data.tar.gz: 37eaf5d555de894a59ba9d346c05efd809fbd75a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: '07196f9af91cbad3bce2353e01f61917e656fd4a4fbb38d4659ba9c3cdfc124199aeca061b2d1a3ca2233867b5209baed02f047793f69783e1dbae2de2542548'
|
|
7
|
+
data.tar.gz: 445450ddbef84fb469029a552dae24568d45dc1a89622e8a81a31ea5d660caa073cec81a55426c84f890ecb04bdfcfdc4c89d4202c69c5afed6c58e040dfeb79
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.0.
|
|
1
|
+
0.0.9
|
data/lib/tokfile/eqdsk.rb
CHANGED
|
@@ -4,7 +4,7 @@ class TokFile::Eqdsk
|
|
|
4
4
|
#attr_accessor :rboxlen, :zboxlen, :r0exp, :rboxlft
|
|
5
5
|
DATANAMES = [
|
|
6
6
|
:rboxlen, :zboxlen, :r0exp, :rboxlft, :dummy,
|
|
7
|
-
:raxis, :zaxis, :psiaxis, :
|
|
7
|
+
:raxis, :zaxis, :psiaxis, :psisep, :b0exp,
|
|
8
8
|
:current, :dummy, :dummy, :dummy, :dummy,
|
|
9
9
|
:dummy, :dummy, :dummy, :dummy, :dummy,
|
|
10
10
|
:t,
|
|
@@ -243,7 +243,7 @@ EOF
|
|
|
243
243
|
@zbound = @zlimiter = ck.data[0].y.data
|
|
244
244
|
end
|
|
245
245
|
def summary_graphkit
|
|
246
|
-
psivec = GSL::Vector.linspace(
|
|
246
|
+
psivec = GSL::Vector.linspace(psiaxis, psisep, @nrbox)
|
|
247
247
|
multkit = GraphKit::MultiWindow.new([:pr, :pprime, :t, :ttprime, :q].map{|name|
|
|
248
248
|
kit = GraphKit.quick_create([psivec, send(name)])
|
|
249
249
|
kit.title = name.to_s
|
data/tokfile.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: tokfile 0.0.
|
|
5
|
+
# stub: tokfile 0.0.9 ruby lib
|
|
6
6
|
|
|
7
7
|
Gem::Specification.new do |s|
|
|
8
8
|
s.name = "tokfile".freeze
|
|
9
|
-
s.version = "0.0.
|
|
9
|
+
s.version = "0.0.9"
|
|
10
10
|
|
|
11
11
|
s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
|
|
12
12
|
s.require_paths = ["lib".freeze]
|
|
13
13
|
s.authors = ["Edmund Highcock".freeze]
|
|
14
|
-
s.date = "2017-01-
|
|
14
|
+
s.date = "2017-01-26"
|
|
15
15
|
s.description = "A tool for working with common tokamak file formats from tools like EFIT, CHEASE, TRANSP, CRONOS etc. Contains commands for plotting a summary of content, manipulating the data within them and most importantly, converting one format to another.".freeze
|
|
16
16
|
s.email = "edmundhighcock@users.sourceforge.net".freeze
|
|
17
17
|
s.executables = ["tokfile".freeze]
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: tokfile
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.9
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Edmund Highcock
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-01-
|
|
11
|
+
date: 2017-01-26 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: coderunner
|