GCM expansion #70
Replies: 3 comments 9 replies
-
Comparison to latest NLDAS model runsIn the latest NLDAS run for the full footprint, model runs for 11990/12103 lakes outside of the Dakotas succeeded (99%). Model runs failed for 113/12103 lakes outside of the Dakotas (1%). There were 12 lakes for which the NLDAS run failed but the GCM runs did not. That means there were either NLDAS or GCM failures across 444 lakes. So currently we have NLDAS and all GCM simulation results for 11,659 lakes outside of the Dakotas, or 96% |
Beta Was this translation helpful? Give feedback.
-
@lindsayplatt @jread-usgs The GCM evaluation plots are HERE. There were 1,175 evaluation sites (sites with >= 10 min_obs_dates, successful model runs, and matched pred-obs) in the GCM contemporary period (1981-2000). |
Beta Was this translation helpful? Give feedback.
-
Okay just completed a second complete re-run of the GCM models (to confirm the results of the 8/25 run) following a few changes to the There are 12,299 lakes that fall within the CASC footprint and within the GCM footprint. That amounts to 221382 unique model runs. 218970 (98.9%) succeeded. All 18 model runs succeeded for 11,715 lakes, or 95.3% of lakes. 1+ runs failed for 584 lakes. The 2,412 model failures for 584 lakes were primarily due to NA values and model layers dropping to 1 p2_gcm_glm_uncalibrated_runs %>% left_join(p1_lake_cell_tile_xwalk_df, by='site_id') %>% filter(glm_success==FALSE) %>% group_by(glm_code, extraction_error) %>% summarize(n=n())
`summarise()` has grouped output by 'glm_code'. You can override using the `.groups`
argument.
# A tibble: 5 × 3
# Groups: glm_code [3]
glm_code extraction_error n
<int> <chr> <int>
1 0 NA temperature values 1322
2 0 Number of layers drops to 1 1019
3 0 Number of layers drops to 1, Maximum hice value exceeds lake d… 6
4 1 NA 45
5 134 NA 20 Note that the 'NA temperature values' error is triggered by the extraction of GLM temperatures and precedes the generation of the other two extraction errors. So lakes for which temperature data extraction failed ( |
Beta Was this translation helpful? Give feedback.
-
@lindsayplatt - Summary of GCM model runs for the expanded footprint, excluding SD and ND lakes
I just ran the GCM models for the full footprint (12,864 lakes). For now, I'm only summarizing results for lakes NOT in SD or ND (12,103 lakes), b/c we've not yet excluded lakes in those states that fall outside the GCM footprint.
Across all lakes outside of the Dakotas, all 18 model runs succeeded for 11,671 lakes (96.4%). 1+ model runs failed for 432 lakes (3.6% - 1923 failed runs in all).
The mean lake depth across the 432 lakes outside of the Dakotas for which GCM runs failed is 1.6 meters. Median lake depth is 1 m, minimum lake depth is 0 m (4 sites -
c("nhdhr_113236931", "nhdhr_151870592", "nhdhr_151874009", "nhdhr_45361479" )
), maximum lake depth is 53.6 m (nhdhr_129226206
). There were 6 lakes over 10 meters deep that failed.The 1923 run failures for 432 lakes were primarily due to NA values and model layers dropping to 1:
Note that the 'NA temperature values' error is triggered by the extraction of GLM temperatures and precedes the generation of the other two extraction errors. So lakes for which temperature data extraction failed (
NA temperature values
) may have also have excessive ice generation or only 1 simulation layer.Beta Was this translation helpful? Give feedback.
All reactions