-
Notifications
You must be signed in to change notification settings - Fork 33
Date aware examples #325
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
joewallwork
wants to merge
9
commits into
main
Choose a base branch
from
date-aware-examples
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Date aware examples #325
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
34d3b4b
North Sea: actually use shorter test time
joewallwork fff2666
Tohoku: make date-aware
joewallwork 1b07342
minutes->hours
joewallwork 1ac8a4a
Merge branch 'master' into date-aware-examples
joewallwork fc0126b
Merge branch 'main' into date-aware-examples
joewallwork 48d7494
Use simulation dates rather than times
joewallwork 127e7aa
Fix start->initial
joewallwork 846a763
Remove THETIS_REGRESSION_TEST end_date change
joewallwork e19e062
Fix timedelta calculation
stephankramer File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -9,7 +9,8 @@ | |||||
| import scipy.interpolate as si | ||||||
|
|
||||||
|
|
||||||
| # Setup UTM zone | ||||||
| # Setup zones | ||||||
| sim_tz = timezone.pytz.timezone("Japan") | ||||||
| coord_system = coordsys.UTMCoordinateSystem(utm_zone=54) | ||||||
|
|
||||||
| # Earthquake epicentre in longitude-latitude coordinates | ||||||
|
|
@@ -117,12 +118,19 @@ def construct_solver(bathymetry_2d, elev_init, store_station_time_series=True, * | |||||
| """ | ||||||
| mesh2d = elev_init.function_space().mesh() | ||||||
|
|
||||||
| t_end = 2 * 3600.0 | ||||||
| # Setup temporal discretisation | ||||||
| u_mag = Constant(5.0) | ||||||
| default_start_date = datetime.datetime(2011, 3, 11, 14, 46, tzinfo=sim_tz) | ||||||
| default_end_date = datetime.datetime(2011, 3, 11, 16, 46, tzinfo=sim_tz) | ||||||
| t_export = 60.0 | ||||||
| dt = 60.0 | ||||||
| if os.getenv("THETIS_REGRESSION_TEST") is not None: | ||||||
| t_end = 5 * t_export | ||||||
| model_options["simulation_initial_date"] = default_start_date | ||||||
| model_options["simulation_end_date"] = datetime.datetime(2011, 3, 11, 14, 51, tzinfo=sim_tz) | ||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
| if "simulation_initial_date" not in model_options: | ||||||
| model_options["simulation_initial_date"] = default_start_date | ||||||
| if "simulation_end_date" not in model_options: | ||||||
| model_options["simulation_end_date"] = default_end_date | ||||||
|
|
||||||
| # Bathymetry | ||||||
| bathymetry_2d.interpolate(bathymetry_2d - elev_init) | ||||||
|
|
@@ -134,7 +142,6 @@ def construct_solver(bathymetry_2d, elev_init, store_station_time_series=True, * | |||||
| options.element_family = "dg-dg" | ||||||
| options.simulation_export_time = t_export | ||||||
| options.fields_to_export = ["elev_2d"] | ||||||
| options.simulation_end_time = t_end | ||||||
| options.horizontal_velocity_scale = u_mag | ||||||
| options.swe_timestepper_type = "CrankNicolson" | ||||||
| if not hasattr(options.swe_timestepper_options, "use_automatic_timestep"): | ||||||
|
|
||||||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If you do:
print(datetime.datetime(2011, 3, 11, 14, 46, tzinfo=sim_tz), sim_tz.localize(datetime.datetime(2011, 3, 11, 14, 46)))you get
2011-03-11 14:46:00+09:19 2011-03-11 14:46:00+09:00i.e. the former uses a time zone of UTC+9:19 instead of the correct UTC+9. If I understand correctly, datetime in the standard library only has limited support for timezones, and it doesn't handle the fact that timezones change historically (i.e. Japan used to be on UTC+9:19 but is now UTC+9