Skip to content

Commit

Permalink
change long cadence to be more flexible
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Blanton committed Sep 15, 2024
1 parent 9316fa2 commit a5ea48b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
nepochs=2
skybrightness= 1.00 1.00
delta= 0.00 100.00
delta_min= 0.00 99.00
delta_max= 0.00 1800.00
delta_min= 0.00 2.00
delta_max= 0.00 100000.00
nexp= 1 1
max_length= 0.20 0.20
min_moon_sep= 15.00 15.00
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
bright_2x1_long_v2;2;{0.,100.};{1.,1.};{0.,1800.};{0.,99.};{1,1};{0.2,0.2};{"bright_time","bright_time"};bright_2x1_long;_v2
bright_2x1_long_v2;2;{0.,100.};{1.,1.};{0.,100000.};{0.,2.};{1,1};{0.2,0.2};{"bright_time","bright_time"};bright_2x1_long;_v2
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ def copy_cadence(from_cadence, to_cadence, nepochs=None):

copy_cadence('bright_2x1', 'bright_2x1_long_v2')

cadencelist.cadences['bright_2x1_long_v2'].delta_min[1] = 99.
cadencelist.cadences['bright_2x1_long_v2'].delta_min[1] = 2.
cadencelist.cadences['bright_2x1_long_v2'].delta_max[1] = 100000.
cadencelist.cadences['bright_2x1_long_v2'].delta[1] = 100.
cadencelist.cadences['bright_2x1_long_v2'].label_root = 'bright_2x1_long'
cadencelist.cadences['bright_2x1_long_v2'].label_version = '_v2'
Expand Down

0 comments on commit a5ea48b

Please sign in to comment.