{"payload":{"feedbackUrl":"https://github.com/orgs/community/discussions/53140","repo":{"id":180176845,"defaultBranch":"main","name":"CMEPS","ownerLogin":"ESCOMP","currentUserCanPush":false,"isFork":false,"isEmpty":false,"createdAt":"2019-04-08T15:18:16.000Z","ownerAvatar":"https://avatars.githubusercontent.com/u/33552285?v=4","public":true,"private":false,"isOrgOwned":true},"refInfo":{"name":"","listCacheKey":"v0:1727534736.0","currentOid":""},"activityList":{"items":[{"before":"b1e2325050eea9889195ab33ab3f26bd189dcac2","after":"842be8a65a2a7d03bd43fbdd473cba96d4051e6c","ref":"refs/heads/main","pushedAt":"2024-09-28T14:45:22.000Z","pushType":"pr_merge","commitsCount":2,"pusher":{"login":"billsacks","name":"Bill Sacks","path":"/billsacks","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/6266741?s=80&v=4"},"commit":{"message":"Merge pull request #506 from billsacks/fix_xgrid_reproducibility\n\nFix xgrid reproducibility by using srcTermProcessing=0 for all xgrid FieldRegridStore calls\r\n\r\n### Description of changes\r\n\r\nUse srcTermProcessing=0 for all xgrid FieldRegridStore calls.\r\n\r\nThis is needed for bit-for-bit reproducibility. Most of the calls to FieldRegridStore weren't setting srcTermProcessing at all; this can lead to irreproducibility of the results. Two of the calls had srcTermProcessing set to 1 before, which leads to reproducibility but (according to Gerhard Theurich) is often worse for performance than a value of 0.\r\n\r\nNote that we use a value of 0 in the calls in med_map_mod.\r\n\r\n### Specific notes\r\n\r\nContributors other than yourself, if any: Guidance from @oehmke and @theurich\r\n\r\nCMEPS Issues Fixed (include github issue #): Resolves #505 \r\n\r\nAre changes expected to change answers? YES: roundoff-level differences expected for runs with `aoflux_grid = \"xgrid\"` (but those runs had expected roundoff-level differences from run to run before this fix anyway)\r\n\r\nAny User Interface Changes (namelist or namelist defaults changes)? No\r\n\r\n### Testing performed\r\nPlease describe the tests along with the target model and machine(s) \r\nIf possible, please also added hashes that were used in the testing\r\n\r\nIn the context of cesm3_0_alpha03c, with the change here put on top of the change in #501, ran `REP_Ld2.ne30pg3_t232.BLT1850.derecho_intel.allactive-xgrid`, where the `xgrid` testmod contained:\r\n\r\ninclude_user_mods:\r\n```\r\n../defaultio\r\n```\r\n\r\nuser_nl_cpl:\r\n```\r\naoflux_grid = \"xgrid\"\r\n```","shortMessageHtmlLink":"Merge pull request #506 from billsacks/fix_xgrid_reproducibility"}},{"before":"5b7d76978e2fdc661ec2de4ba9834b985decadc6","after":"b1e2325050eea9889195ab33ab3f26bd189dcac2","ref":"refs/heads/main","pushedAt":"2024-09-28T14:44:13.000Z","pushType":"pr_merge","commitsCount":2,"pusher":{"login":"billsacks","name":"Bill Sacks","path":"/billsacks","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/6266741?s=80&v=4"},"commit":{"message":"Merge pull request #501 from billsacks/fix_xgrid_f_compset\n\nFix for exchange grid with add_gusts false: Only add gust fields if add_gusts is true\r\n\r\n### Description of changes\r\n\r\nRuns with `aoflux_grid = \"xgrid\"` and `add_gusts = .false.` have been failing with:\r\n\r\n```\r\n20240903 141813.539 ERROR            PET003 ESMCI_Container.h:178 ESMCI::Container::get() Invalid argument  - key does not exist: So_ugustOut\r\n```\r\n\r\nThis PR fixes this issue by avoiding adding the two new gust fields to the list of mediator fields if add_gusts is false.\r\n\r\nThe explanation for why this caused an issue with the exchange grid is:\r\n- In `mediator/esmFldsExchange_cesm_mod.F90`: `esmFldsExchange_cesm`, `So_ugustOut` and `So_u10withGust` are added as atmosphere-ocean fluxes regardless of the value of `add_gusts`. \r\n- But in `mediator/med_phases_aofluxes_mod.F90`: `set_aoflux_out_pointers`, the `fldbun_getfldptr` call is only made if `add_gusts` is true.\r\n- There is a difference in behavior with xgrid than with ogrid here: with xgrid, the call to `fldbun_getfldptr` is responsible for adding the field to `FBaof_x`. (I think with ogrid or agrid, the fields have been added to the relevant field bundle already.)\r\n- So we end up with these gust fields not in `FBaof_x`, but still in `fldnames_aof_out`, and this leads to an inconsistency.\r\n\r\n**@megandevlan and @jedwards4b: I'm not positive that this is the right fix: It does solve the issue, but I'd like one or both of your input on whether this is the right way to solve the issue. In particular, can we rely on CAM working correctly when add_gusts is false if these fields are absent? It looks to me like CAM will set the relevant fields to 0 if they are absent; will that lead to correct behavior when add_gusts = .false.?**\r\n\r\n### Specific notes\r\n\r\nContributors other than yourself, if any:\r\n\r\nCMEPS Issues Fixed (include github issue #):\r\n\r\nAre changes expected to change answers? No, but there are FIELDLIST diffs for cases with add_gusts false: the following fields will no longer be present on the cpl hi files when add_gusts is false:\r\n- Med_aoflux_ocn_So_u10withGust\r\n- Med_aoflux_ocn_So_ugustOut\r\n- Med_aoflux_atm_So_u10withGust\r\n- Med_aoflux_atm_So_ugustOut\r\n- atmExp_So_u10withGust\r\n- atmExp_So_ugustOut\r\n\r\nAny User Interface Changes (namelist or namelist defaults changes)? No\r\n\r\n### Testing performed\r\nPlease describe the tests along with the target model and machine(s) \r\nIf possible, please also added hashes that were used in the testing\r\n\r\nRan three versions of `SMS_D_Ln9.ne30pg3_ne30pg3_mg17.FLTHIST.derecho_intel.cam-outfrq9s` from cesm3_0_alpha03c:\r\n1. `add_gusts = .false.`, `aoflux_grid = \"ogrid\"`\r\n2. `add_gusts = .false.`, `aoflux_grid = \"xgrid\"` (**This is the case that was failing previously.**\r\n3. `add_gusts = .true.`, `aoflux_grid = \"xgrid\"`\r\n\r\nAll three pass now.\r\n\r\nAlso ran `SMS_Ld40.TL319_t232.C_JRA.derecho_intel` (which has add_gusts = .false.) with `aoflux_grid = \"xgrid\"`; this also passes now but failed before the changes in this PR.\r\n\r\nI have also run the following tests with comparisons against baselines: all pass and are bit-for-bit, though with FIELDLIST diffs as expected:\r\n- SMS.TL319_t232.G_JRA.derecho_intel.mom-no_stoch_physics\r\n- ERP_Ln9.f09_f09_mg17.F1850.derecho_intel.cam-outfrq9s\r\n- SMS_Ld2.ne30pg3_t232.BLT1850.derecho_intel.allactive-defaultio with change to user_nl_cpl to set add_gusts false","shortMessageHtmlLink":"Merge pull request #501 from billsacks/fix_xgrid_f_compset"}},{"before":null,"after":"680221e2630280922b2058fc63a7c89c1dfc76c9","ref":"refs/heads/feature/update_dms_exchange","pushedAt":"2024-09-27T11:47:23.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"mvertens","name":null,"path":"/mvertens","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/7958803?s=80&v=4"},"commit":{"message":"Merge branch 'main' into feature/update_dms_exchange","shortMessageHtmlLink":"Merge branch 'main' into feature/update_dms_exchange"}},{"before":"864b7ceaca2db0f2a117e3dfeedb782ae3550fc1","after":"5b7d76978e2fdc661ec2de4ba9834b985decadc6","ref":"refs/heads/main","pushedAt":"2024-08-22T14:31:33.000Z","pushType":"pr_merge","commitsCount":21,"pusher":{"login":"jedwards4b","name":"Jim Edwards","path":"/jedwards4b","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/6126104?s=80&v=4"},"commit":{"message":"Merge pull request #447 from jedwards4b/fix/nsteps_alarms\n\nalarms based on nsteps","shortMessageHtmlLink":"Merge pull request #447 from jedwards4b/fix/nsteps_alarms"}},{"before":"d8b086573b48a0430bc32ef73a12be3fd2069b86","after":"864b7ceaca2db0f2a117e3dfeedb782ae3550fc1","ref":"refs/heads/main","pushedAt":"2024-08-21T06:53:57.000Z","pushType":"pr_merge","commitsCount":2,"pusher":{"login":"jedwards4b","name":"Jim Edwards","path":"/jedwards4b","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/6126104?s=80&v=4"},"commit":{"message":"Merge pull request #499 from mvertens/feature/fix_erp_dglc_test\n\nfix problem with no coupler file written at restart interval","shortMessageHtmlLink":"Merge pull request #499 from mvertens/feature/fix_erp_dglc_test"}},{"before":"e71a5aa81e31f2fd996cb79dd3390fdc213f35e8","after":"d8b086573b48a0430bc32ef73a12be3fd2069b86","ref":"refs/heads/main","pushedAt":"2024-08-12T20:40:16.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"mvertens","name":null,"path":"/mvertens","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/7958803?s=80&v=4"},"commit":{"message":"fix bug in med_diag_mod for ice runoff (#497)\n\n* send Si_thick from cice to wav if advertised \r\n* fix BUDGETS correctly for BLOM","shortMessageHtmlLink":"fix bug in med_diag_mod for ice runoff (#497)"}},{"before":"d96fdf77f6d8aa84cc1db3b36dfebe491d861320","after":"e71a5aa81e31f2fd996cb79dd3390fdc213f35e8","ref":"refs/heads/main","pushedAt":"2024-08-09T15:59:27.000Z","pushType":"pr_merge","commitsCount":2,"pusher":{"login":"billsacks","name":"Bill Sacks","path":"/billsacks","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/6266741?s=80&v=4"},"commit":{"message":"Merge pull request #495 from billsacks/simplify_glc_renormalize_smb\n\nSimplify logic for glc_renormalize_smb\r\n\r\n### Description of changes\r\n\r\nRemove the glc_renormalize_smb option on_if_glc_coupled_fluxes. This had been the default. Change the default to 'on'. This maintains consistent behavior between different configurations.\r\n\r\n### Specific notes\r\n\r\nContributors other than yourself, if any:\r\n\r\nCMEPS Issues Fixed (include github issue #): Resolves ESCOMP/CMEPS#133\r\n\r\nAre changes expected to change answers? YES: changes answers by greater than roundoff for T compsets (active GLC with DLND) (now SMB is remapped with renormalization for T compsets by default); answers should be bit-for-bit in all other configurations (unless there is some configuration/combination that I'm not thinking of...)\r\n\r\nAny User Interface Changes (namelist or namelist defaults changes)? Removes `on_if_glc_coupled_fluxes` option to `glc_renormalize_smb`\r\n\r\n### Testing performed\r\nPlease describe the tests along with the target model and machine(s) \r\nIf possible, please also added hashes that were used in the testing\r\n\r\nTested in the context of `cesm3_0_beta02`: ran:\r\n- SMS_Ld5.f10_f10_ais8gris4_mg37.I1850Clm50SpGag.derecho_intel.cism-test_coupling\r\n- SMS_Ld5.f10_f10_mg37.1850_DATM%GSWP3v1_CLM50%SP_SICE_SOCN_MOSART_DGLC%NOEVOLVE_SWAV.derecho_intel [Like an I compset but with DGLC%NOEVOLVE]\r\n- SMS_Ly2.f09_g17_gris20.T1850Gg.derecho_intel\r\n\r\nAll tests passed; the T compset test changed answers as expected but the other two were bit-for-bit.","shortMessageHtmlLink":"Merge pull request #495 from billsacks/simplify_glc_renormalize_smb"}},{"before":"7585948d1ab9b2d652446dfc943722460469ac03","after":"d96fdf77f6d8aa84cc1db3b36dfebe491d861320","ref":"refs/heads/main","pushedAt":"2024-08-08T16:55:46.000Z","pushType":"pr_merge","commitsCount":5,"pusher":{"login":"jedwards4b","name":"Jim Edwards","path":"/jedwards4b","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/6126104?s=80&v=4"},"commit":{"message":"Merge pull request #493 from mnlevy1981/add_MARBL\n\nAdd marbl","shortMessageHtmlLink":"Merge pull request #493 from mnlevy1981/add_MARBL"}},{"before":"6c5b8fb3d9bdd36776b2dbc81e58d91f55ae184d","after":"7585948d1ab9b2d652446dfc943722460469ac03","ref":"refs/heads/main","pushedAt":"2024-08-07T23:08:46.000Z","pushType":"pr_merge","commitsCount":2,"pusher":{"login":"jedwards4b","name":"Jim Edwards","path":"/jedwards4b","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/6126104?s=80&v=4"},"commit":{"message":"Merge pull request #494 from jedwards4b/add_case_git_repository\n\nadd CASE_GIT_REPOSITORY variable","shortMessageHtmlLink":"Merge pull request #494 from jedwards4b/add_case_git_repository"}},{"before":"a41d9c27fe91a1605f4e61c7f33ffe07cf83c788","after":"6c5b8fb3d9bdd36776b2dbc81e58d91f55ae184d","ref":"refs/heads/main","pushedAt":"2024-08-02T19:10:54.000Z","pushType":"pr_merge","commitsCount":2,"pusher":{"login":"jedwards4b","name":"Jim Edwards","path":"/jedwards4b","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/6126104?s=80&v=4"},"commit":{"message":"Merge pull request #492 from briandobbins/change_to_64bit_data_format\n\nChanges the default PIO format from 64bit_offset to 64bit_data","shortMessageHtmlLink":"Merge pull request #492 from briandobbins/change_to_64bit_data_format"}},{"before":"739b9645ae371207395052fbcc1bb8eb30436b49","after":"a41d9c27fe91a1605f4e61c7f33ffe07cf83c788","ref":"refs/heads/main","pushedAt":"2024-08-01T14:01:36.000Z","pushType":"pr_merge","commitsCount":2,"pusher":{"login":"jedwards4b","name":"Jim Edwards","path":"/jedwards4b","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/6126104?s=80&v=4"},"commit":{"message":"Merge pull request #490 from jedwards4b/fix_nan_in_pslv\n\nnan was picked up in pslv field on first pass","shortMessageHtmlLink":"Merge pull request #490 from jedwards4b/fix_nan_in_pslv"}},{"before":"72280ddf3314fd85efed0f30419a98efdd0c266f","after":"739b9645ae371207395052fbcc1bb8eb30436b49","ref":"refs/heads/main","pushedAt":"2024-08-01T14:01:19.000Z","pushType":"pr_merge","commitsCount":2,"pusher":{"login":"jedwards4b","name":"Jim Edwards","path":"/jedwards4b","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/6126104?s=80&v=4"},"commit":{"message":"Merge pull request #489 from alperaltuntas/add_glc_runoff_heat_content\n\nCompute and export heat content associated with glc runoffs","shortMessageHtmlLink":"Merge pull request #489 from alperaltuntas/add_glc_runoff_heat_content"}},{"before":"452005149deea59768410c296b09b8457fd06bcd","after":"72280ddf3314fd85efed0f30419a98efdd0c266f","ref":"refs/heads/main","pushedAt":"2024-08-01T14:00:50.000Z","pushType":"pr_merge","commitsCount":9,"pusher":{"login":"jedwards4b","name":"Jim Edwards","path":"/jedwards4b","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/6126104?s=80&v=4"},"commit":{"message":"Merge pull request #488 from DeniseWorthen/feature/fixfloat4auxhist\n\nFix aux history files for use_float=.true.","shortMessageHtmlLink":"Merge pull request #488 from DeniseWorthen/feature/fixfloat4auxhist"}},{"before":"10ffcc820ba1af602478c41dc51b660bcd7705fb","after":"452005149deea59768410c296b09b8457fd06bcd","ref":"refs/heads/main","pushedAt":"2024-07-25T19:59:53.000Z","pushType":"pr_merge","commitsCount":2,"pusher":{"login":"jedwards4b","name":"Jim Edwards","path":"/jedwards4b","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/6126104?s=80&v=4"},"commit":{"message":"Merge pull request #487 from jedwards4b/fix/aoflux_merge_error\n\nfix an error in the aoflux wind_gust fields","shortMessageHtmlLink":"Merge pull request #487 from jedwards4b/fix/aoflux_merge_error"}},{"before":"ce9cfe287907720f1cf159e1f9aff68865a75c5a","after":"10ffcc820ba1af602478c41dc51b660bcd7705fb","ref":"refs/heads/main","pushedAt":"2024-07-25T16:06:21.000Z","pushType":"pr_merge","commitsCount":2,"pusher":{"login":"jedwards4b","name":"Jim Edwards","path":"/jedwards4b","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/6126104?s=80&v=4"},"commit":{"message":"Merge pull request #485 from billsacks/declare_cnt\n\nDeclare cnt variable needed with ESMF_AWARE_THREADING","shortMessageHtmlLink":"Merge pull request #485 from billsacks/declare_cnt"}},{"before":"e4a5e5849abfd2164458741681b5b34f140ff13c","after":"ce9cfe287907720f1cf159e1f9aff68865a75c5a","ref":"refs/heads/main","pushedAt":"2024-07-12T18:30:24.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"mvertens","name":null,"path":"/mvertens","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/7958803?s=80&v=4"},"commit":{"message":"fix bug in ocn2glc_coupling and add blom (#484)\n\n* add new functionality for transferring dms,bfr,n2o and nh3 from ocn to atm (only valid for BLOM)\r\n* added blom configurations\r\n* fixed bug in that advertising for So_t_depth and So_s_depth was never happening\r\n* addressed issues isn PR review\r\nCo-authored-by: Mariana Vertenstein ","shortMessageHtmlLink":"fix bug in ocn2glc_coupling and add blom (#484)"}},{"before":"1b8920c3bf6c64056d6c1b1b88393617de2fefa3","after":"e4a5e5849abfd2164458741681b5b34f140ff13c","ref":"refs/heads/main","pushedAt":"2024-07-11T11:57:33.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"mvertens","name":null,"path":"/mvertens","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/7958803?s=80&v=4"},"commit":{"message":"make sure variables are allocated before deallocating (#480)","shortMessageHtmlLink":"make sure variables are allocated before deallocating (#480)"}},{"before":"c2ef06d14ba74f7786aa616d3df26bda1f6c2afb","after":"1b8920c3bf6c64056d6c1b1b88393617de2fefa3","ref":"refs/heads/main","pushedAt":"2024-07-10T16:40:07.000Z","pushType":"pr_merge","commitsCount":2,"pusher":{"login":"billsacks","name":"Bill Sacks","path":"/billsacks","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/6266741?s=80&v=4"},"commit":{"message":"Merge pull request #481 from billsacks/remove_negative_runoff_land_only\n\nSeparate the control of removing negative runoff for lnd vs glc, and set default to false for glc-derived runoff\r\n\r\n### Description of changes\r\n\r\nThis is a follow-up to #471 .\r\n\r\nAt least for now, we want the default to be to remove negative runoff for lnd-derived runoff, but NOT for glc-derived runoff. This PR implements that change. Note that this changes behavior for the correction of glc-derived runoff, but keeps the behavior the same as before for lnd-derived runoff.\r\n\r\n### Specific notes\r\n\r\nAre changes expected to change answers? (specify if bfb, different at roundoff, more substantial): **Yes - changes answers substantially for runoff fields in some B compsets (or other configurations with both active land/river and active ocean) - but only for configurations that have glc-derived runoff; this can currently come from configurations with CISM in EVOLVE mode or DGLC (even in NOEVOLVE mode). Note that this change just undoes part of the answer changes that came from #471 .**\r\n\r\nAny User Interface Changes (namelist or namelist defaults changes)? Separates the namelist item remove_negative_runoff into two separate options: remove_negative_runoff_lnd and remove_negative_runoff_glc.\r\n\r\n### Testing performed\r\nPlease describe the tests along with the target model and machine(s) \r\nIf possible, please also added hashes that were used in the testing\r\n\r\nUsing `cesm2_3_beta17` (with CISM at `756cfa6f0514d89977d2732ad06a4d364da5d418`, mosart at mosart1.1.02, and removing the contents of `cime_config/testmods_dirs/allactive/defaultio/user_nl_mosart`: Ran three versions of `SMS_D_Ld3.f19_g17.B1850G.derecho_intel.allactive-cism-test_coupling`:\r\n- One with default flags\r\n- One with `remove_negative_runoff_glc` set to true\r\n- One with `remove_negative_runoff_lnd` set to false\r\n\r\nI checked the behavior in these in runs with dbug_flag set to 21 so I would see diagnostics of what fields were being adjusted, and confirmed that the correct fields were being operated on in all three cases.","shortMessageHtmlLink":"Merge pull request #481 from billsacks/remove_negative_runoff_land_only"}},{"before":"47fb4e633a76ec6d60969b1af751f90790387246","after":"c2ef06d14ba74f7786aa616d3df26bda1f6c2afb","ref":"refs/heads/main","pushedAt":"2024-07-09T15:42:53.000Z","pushType":"pr_merge","commitsCount":2,"pusher":{"login":"jedwards4b","name":"Jim Edwards","path":"/jedwards4b","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/6126104?s=80&v=4"},"commit":{"message":"Merge pull request #479 from jedwards4b/fix/gnu_unallocated_array_error\n\ngnu reports an error if this unused variable is not allocated","shortMessageHtmlLink":"Merge pull request #479 from jedwards4b/fix/gnu_unallocated_array_error"}},{"before":"3305e113d6791aba90ca335560a2c0e25ade780b","after":"47fb4e633a76ec6d60969b1af751f90790387246","ref":"refs/heads/main","pushedAt":"2024-07-01T14:56:22.000Z","pushType":"pr_merge","commitsCount":4,"pusher":{"login":"jedwards4b","name":"Jim Edwards","path":"/jedwards4b","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/6126104?s=80&v=4"},"commit":{"message":"Merge pull request #477 from mvertens/feature/bugfix\n\nbug fix primarily for usf testing","shortMessageHtmlLink":"Merge pull request #477 from mvertens/feature/bugfix"}},{"before":"06a825a01d6c1abdecdcb0a4c41068a95b83745c","after":"3305e113d6791aba90ca335560a2c0e25ade780b","ref":"refs/heads/main","pushedAt":"2024-07-01T14:53:00.000Z","pushType":"pr_merge","commitsCount":5,"pusher":{"login":"jedwards4b","name":"Jim Edwards","path":"/jedwards4b","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/6126104?s=80&v=4"},"commit":{"message":"Merge pull request #474 from jedwards4b/add_gust_fix3\n\nnew fix for add_gusts","shortMessageHtmlLink":"Merge pull request #474 from jedwards4b/add_gust_fix3"}},{"before":"e84e8a1f4fbe4073e82435c72459352de6077bb2","after":null,"ref":"refs/heads/feature/fixfloat4auxhist","pushedAt":"2024-06-27T13:09:25.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"DeniseWorthen","name":"Denise Worthen","path":"/DeniseWorthen","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/40498404?s=80&v=4"}},{"before":"1dd90c745897fdd8cd94769495a30f390749b602","after":"06a825a01d6c1abdecdcb0a4c41068a95b83745c","ref":"refs/heads/main","pushedAt":"2024-06-26T15:40:07.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"jedwards4b","name":"Jim Edwards","path":"/jedwards4b","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/6126104?s=80&v=4"},"commit":{"message":"bug fix for wav2ocn_map","shortMessageHtmlLink":"bug fix for wav2ocn_map"}},{"before":"e1335d32fca0e5571a0d5a7edb0d1473266b7923","after":"1dd90c745897fdd8cd94769495a30f390749b602","ref":"refs/heads/main","pushedAt":"2024-06-26T14:33:22.000Z","pushType":"pr_merge","commitsCount":18,"pusher":{"login":"jedwards4b","name":"Jim Edwards","path":"/jedwards4b","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/6126104?s=80&v=4"},"commit":{"message":"Merge pull request #470 from mvertens/feature/trigrid\n\nAdd trigrid capability - ability to run atm and lnd on separate grids","shortMessageHtmlLink":"Merge pull request #470 from mvertens/feature/trigrid"}},{"before":"6b5896129c0e65ab9a5d0c79cb6219bb9a0255bd","after":"e1335d32fca0e5571a0d5a7edb0d1473266b7923","ref":"refs/heads/main","pushedAt":"2024-06-26T13:14:02.000Z","pushType":"pr_merge","commitsCount":10,"pusher":{"login":"jedwards4b","name":"Jim Edwards","path":"/jedwards4b","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/6126104?s=80&v=4"},"commit":{"message":"Merge pull request #429 from ekluzek/dust_emis_mod\n\nAdd shr_dust_emis_mod to handle options for dust emissions between CTSM and CAM","shortMessageHtmlLink":"Merge pull request #429 from ekluzek/dust_emis_mod"}},{"before":"c5973fdf85960e8c65fb3b2e89518e8566dfe1dc","after":"6b5896129c0e65ab9a5d0c79cb6219bb9a0255bd","ref":"refs/heads/main","pushedAt":"2024-06-26T13:13:09.000Z","pushType":"pr_merge","commitsCount":2,"pusher":{"login":"jedwards4b","name":"Jim Edwards","path":"/jedwards4b","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/6126104?s=80&v=4"},"commit":{"message":"Merge pull request #461 from dabail10/wavice\n\nAdd bilinr_nostd for wav2ice coupling","shortMessageHtmlLink":"Merge pull request #461 from dabail10/wavice"}},{"before":"b2cb575e0ef382e7d3c5bebc87fcb423dff09ce3","after":"c5973fdf85960e8c65fb3b2e89518e8566dfe1dc","ref":"refs/heads/main","pushedAt":"2024-06-26T13:12:47.000Z","pushType":"pr_merge","commitsCount":7,"pusher":{"login":"jedwards4b","name":"Jim Edwards","path":"/jedwards4b","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/6126104?s=80&v=4"},"commit":{"message":"Merge pull request #471 from billsacks/remove_negative_runoff\n\nRemove negative runoff","shortMessageHtmlLink":"Merge pull request #471 from billsacks/remove_negative_runoff"}},{"before":"e84e8a1f4fbe4073e82435c72459352de6077bb2","after":"b2cb575e0ef382e7d3c5bebc87fcb423dff09ce3","ref":"refs/heads/main","pushedAt":"2024-06-25T13:21:15.000Z","pushType":"pr_merge","commitsCount":2,"pusher":{"login":"jedwards4b","name":"Jim Edwards","path":"/jedwards4b","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/6126104?s=80&v=4"},"commit":{"message":"Merge pull request #472 from jedwards4b/remove_mct_init\n\nthis call is no longer needed and removing it fully removes the mct l…","shortMessageHtmlLink":"Merge pull request #472 from jedwards4b/remove_mct_init"}},{"before":null,"after":"e84e8a1f4fbe4073e82435c72459352de6077bb2","ref":"refs/heads/feature/fixfloat4auxhist","pushedAt":"2024-06-24T14:26:20.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"DeniseWorthen","name":"Denise Worthen","path":"/DeniseWorthen","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/40498404?s=80&v=4"},"commit":{"message":"Merge pull request #452 from DeniseWorthen/bugfix/aoflux4ufs\n\nFix aoflux for UFS","shortMessageHtmlLink":"Merge pull request #452 from DeniseWorthen/bugfix/aoflux4ufs"}},{"before":"f960f3ed3f4edc6fd59bbfe171160e179557062a","after":"e84e8a1f4fbe4073e82435c72459352de6077bb2","ref":"refs/heads/main","pushedAt":"2024-06-24T13:42:55.000Z","pushType":"pr_merge","commitsCount":10,"pusher":{"login":"jedwards4b","name":"Jim Edwards","path":"/jedwards4b","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/6126104?s=80&v=4"},"commit":{"message":"Merge pull request #452 from DeniseWorthen/bugfix/aoflux4ufs\n\nFix aoflux for UFS","shortMessageHtmlLink":"Merge pull request #452 from DeniseWorthen/bugfix/aoflux4ufs"}}],"hasNextPage":true,"hasPreviousPage":false,"activityType":"all","actor":null,"timePeriod":"all","sort":"DESC","perPage":30,"startCursor":"Y3Vyc29yOnYyOpK7MjAyNC0wOS0yOFQxNDo0NToyMi4wMDAwMDBazwAAAATDZ_4M","endCursor":"Y3Vyc29yOnYyOpK7MjAyNC0wNi0yNFQxMzo0Mjo1NS4wMDAwMDBazwAAAARtkhpM"}},"title":"Activity · ESCOMP/CMEPS"}