gs2crmod 0.11.90 → 0.11.91

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 83e204b3c06cc4aadd1767357fc339f755d0893d
4
- data.tar.gz: 320b4c3b2c5fa93f7dac8f8714e276624c49683e
3
+ metadata.gz: dae24da5e51ee204d98c8ebccb49022fd3c8107a
4
+ data.tar.gz: a9432e34586b7cc1651a98d3ce45f2693c550219
5
5
  SHA512:
6
- metadata.gz: 02a74d105a68f5040ff9d873c41862c407c10c87c0aed24eb6b20f30967ef74446cef4432b6eca96307c7777ded260951f504f128d62d7c2e532bd0e042f5e2d
7
- data.tar.gz: 1af8fd484a020e76f88223ae40808ed7fefb72b968caca4cef7ea258f7cffb90793f73b6a12b33d0e204be98dcacfa4871c1f84a86cd4b745305651f54784655
6
+ metadata.gz: 14f6e0b68ca3ff4bfa18ac803703837fa32154cd390b54a5a79e108371d56769b6aeebfa315ddd52de7cda076f0ee724fb2450339e96c166afe0ea8c9e30cb95
7
+ data.tar.gz: cd862c86cb847c5819bbaec2bfbc4870534c931a47df4bc76cdd4b16e4b0c2433bf14c19f1f7a9710ea5d7a9004e85a26bb988285624d9b648b8cb720727fa8e
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.11.90
1
+ 0.11.91
data/gs2crmod.gemspec CHANGED
@@ -2,12 +2,12 @@
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: gs2crmod 0.11.90 ruby lib
5
+ # stub: gs2crmod 0.11.91 ruby lib
6
6
  # stub: ext/extconf.rb
7
7
 
8
8
  Gem::Specification.new do |s|
9
9
  s.name = "gs2crmod"
10
- s.version = "0.11.90"
10
+ s.version = "0.11.91"
11
11
 
12
12
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
13
13
  s.require_paths = ["lib"]
data/lib/gs2crmod/gs2.rb CHANGED
@@ -1055,6 +1055,7 @@ end
1055
1055
  #end
1056
1056
 
1057
1057
  @namelists_to_print_not_specified = [:gs2_diagnostics_knobs, :diagnostics]
1058
+ @fortran_namelist_source_file_match = /(?<!ingen|gs2_diagnostics)((\.f9[05])|(\.fpp))$/
1058
1059
 
1059
1060
  # def self.add_code_var
1060
1061
  # rcp.namelists.each do |namelist, hash|
@@ -92,7 +92,8 @@
92
92
  :must_pass=>
93
93
  [{:test=>"kind_of? String",
94
94
  :explanation=>"This variable must be a string."}],
95
- :type=>:String}}},
95
+ :type=>:String,
96
+ :autoscanned_defaults=>[""]}}},
96
97
  :kt_grids_knobs=>
97
98
  {:description=>nil,
98
99
  :help=>
@@ -2278,7 +2279,8 @@
2278
2279
  [{:test=>"kind_of? String and FORTRAN_BOOLS.include? self",
2279
2280
  :explanation=>
2280
2281
  "This variable must be a fortran boolean. (In Ruby this is represented as a string: e.g. '.true.')"}],
2281
- :type=>:Fortran_Bool}}},
2282
+ :type=>:Fortran_Bool,
2283
+ :autoscanned_defaults=>[".false."]}}},
2282
2284
  :reinit_knobs=>
2283
2285
  {:description=>"",
2284
2286
  :should_include=>"true",
@@ -4250,7 +4252,8 @@
4250
4252
  [{:test=>"kind_of? String and FORTRAN_BOOLS.include? self",
4251
4253
  :explanation=>
4252
4254
  "This variable must be a fortran boolean. (In Ruby this is represented as a string: e.g. '.true.')"}],
4253
- :type=>:Fortran_Bool}}},
4255
+ :type=>:Fortran_Bool,
4256
+ :autoscanned_defaults=>[".false."]}}},
4254
4257
  :gs2_diagnostics_knobs=>
4255
4258
  {:description=>"DIAGNOSTICS",
4256
4259
  :should_include=>"true",
@@ -5079,7 +5082,29 @@
5079
5082
  :explanation=>
5080
5083
  "This variable must be a fortran boolean. (In Ruby this is represented as a string: e.g. '.true.')"}],
5081
5084
  :type=>:Fortran_Bool,
5082
- :autoscanned_defaults=>[".false.", ".true."]}},
5085
+ :autoscanned_defaults=>[".false.", ".true."]},
5086
+ :write_any=>
5087
+ {:should_include=>"true",
5088
+ :description=>"",
5089
+ :help=>"",
5090
+ :code_name=>:write_any,
5091
+ :must_pass=>
5092
+ [{:test=>"kind_of? String and FORTRAN_BOOLS.include? self",
5093
+ :explanation=>
5094
+ "This variable must be a fortran boolean. (In Ruby this is represented as a string: e.g. '.true.')"}],
5095
+ :type=>:Fortran_Bool},
5096
+ :append_old=>
5097
+ {:should_include=>"true",
5098
+ :description=>
5099
+ "If true, run_name.out.nc already exists, open it and append to it.",
5100
+ :help=>
5101
+ "If true, and netcdf output file (.out.nc) already exists (e.g. if you are restarting), open it and append to it.",
5102
+ :code_name=>:append_old,
5103
+ :must_pass=>
5104
+ [{:test=>"kind_of? String and FORTRAN_BOOLS.include? self",
5105
+ :explanation=>
5106
+ "This variable must be a fortran boolean. (In Ruby this is represented as a string: e.g. '.true.')"}],
5107
+ :type=>:Fortran_Bool}},
5083
5108
  :help=>
5084
5109
  "Controls what information is output by GS2 during and at the end of a simulation."},
5085
5110
  :testgridgen=>
@@ -7214,7 +7239,8 @@
7214
7239
  [{:test=>"kind_of? String and FORTRAN_BOOLS.include? self",
7215
7240
  :explanation=>
7216
7241
  "This variable must be a fortran boolean. (In Ruby this is represented as a string: e.g. '.true.')"}],
7217
- :type=>:Fortran_Bool}}},
7242
+ :type=>:Fortran_Bool,
7243
+ :autoscanned_defaults=>[".false."]}}},
7218
7244
  :normalisations=>
7219
7245
  {:description=>"",
7220
7246
  :should_include=>"true",
@@ -7228,7 +7254,8 @@
7228
7254
  [{:test=>"kind_of? Numeric",
7229
7255
  :explanation=>
7230
7256
  "This variable must be a floating point number (an integer is also acceptable: it will be converted into a floating point number)."}],
7231
- :type=>:Float},
7257
+ :type=>:Float,
7258
+ :autoscanned_defaults=>["self%def_val"]},
7232
7259
  :zref=>
7233
7260
  {:should_include=>"true",
7234
7261
  :description=>"",
@@ -7238,7 +7265,8 @@
7238
7265
  [{:test=>"kind_of? Numeric",
7239
7266
  :explanation=>
7240
7267
  "This variable must be a floating point number (an integer is also acceptable: it will be converted into a floating point number)."}],
7241
- :type=>:Float},
7268
+ :type=>:Float,
7269
+ :autoscanned_defaults=>["self%def_val"]},
7242
7270
  :nref=>
7243
7271
  {:should_include=>"true",
7244
7272
  :description=>"",
@@ -7248,7 +7276,8 @@
7248
7276
  [{:test=>"kind_of? Numeric",
7249
7277
  :explanation=>
7250
7278
  "This variable must be a floating point number (an integer is also acceptable: it will be converted into a floating point number)."}],
7251
- :type=>:Float},
7279
+ :type=>:Float,
7280
+ :autoscanned_defaults=>["self%def_val"]},
7252
7281
  :tref=>
7253
7282
  {:should_include=>"true",
7254
7283
  :description=>"",
@@ -7258,7 +7287,8 @@
7258
7287
  [{:test=>"kind_of? Numeric",
7259
7288
  :explanation=>
7260
7289
  "This variable must be a floating point number (an integer is also acceptable: it will be converted into a floating point number)."}],
7261
- :type=>:Float},
7290
+ :type=>:Float,
7291
+ :autoscanned_defaults=>["self%def_val"]},
7262
7292
  :aref=>
7263
7293
  {:should_include=>"true",
7264
7294
  :description=>"",
@@ -7268,7 +7298,8 @@
7268
7298
  [{:test=>"kind_of? Numeric",
7269
7299
  :explanation=>
7270
7300
  "This variable must be a floating point number (an integer is also acceptable: it will be converted into a floating point number)."}],
7271
- :type=>:Float},
7301
+ :type=>:Float,
7302
+ :autoscanned_defaults=>["self%def_val"]},
7272
7303
  :vref=>
7273
7304
  {:should_include=>"true",
7274
7305
  :description=>"",
@@ -7278,7 +7309,8 @@
7278
7309
  [{:test=>"kind_of? Numeric",
7279
7310
  :explanation=>
7280
7311
  "This variable must be a floating point number (an integer is also acceptable: it will be converted into a floating point number)."}],
7281
- :type=>:Float},
7312
+ :type=>:Float,
7313
+ :autoscanned_defaults=>["self%def_val"]},
7282
7314
  :bref=>
7283
7315
  {:should_include=>"true",
7284
7316
  :description=>"",
@@ -7288,7 +7320,8 @@
7288
7320
  [{:test=>"kind_of? Numeric",
7289
7321
  :explanation=>
7290
7322
  "This variable must be a floating point number (an integer is also acceptable: it will be converted into a floating point number)."}],
7291
- :type=>:Float},
7323
+ :type=>:Float,
7324
+ :autoscanned_defaults=>["self%def_val"]},
7292
7325
  :rhoref=>
7293
7326
  {:should_include=>"true",
7294
7327
  :description=>"",
@@ -7298,4 +7331,5 @@
7298
7331
  [{:test=>"kind_of? Numeric",
7299
7332
  :explanation=>
7300
7333
  "This variable must be a floating point number (an integer is also acceptable: it will be converted into a floating point number)."}],
7301
- :type=>:Float}}}}
7334
+ :type=>:Float,
7335
+ :autoscanned_defaults=>["self%def_val"]}}}}
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gs2crmod
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.11.90
4
+ version: 0.11.91
5
5
  platform: ruby
6
6
  authors:
7
7
  - Edmund Highcock