possible scops bug

23 views
Skip to first unread message

Emily Riley Dellaripa

unread,
Jul 19, 2017, 1:13:28 PM7/19/17
to COSP users group
Hi,

I’ve been using COSP 1.4.1 offline with ECHAM6 output. ECHAM6 does not provide convective cloud cover, so was surprised to discover that occasionally a sub-column is designated as convective cloud inside scops.f (i.e., frac_out = 2). Since conv (i.e., convective cloud cover) is always zero, the assignment of frac_out = 2 happens when the threshold value is also zero. I added some write statements to verify when this was happening. This seems like an error since it makes no sense to designate a sub-column as convective cloud when there isn’t even convective cloud input.

Perhaps the LE should simply be changed to LT in the below part of the scops.f code. Alternatively, an IF statement could maybe be added to avoid the threshold = 0 and conv = 0 situation.

Inside scops.f
!         Code to partition boxes into startiform and convective parts
!         goes here

           DO ibox=1,ncol
             do j=1,npoints
                if (threshold(j,ibox).le.conv(j,ilev)) then
                    ! = 2 IF threshold le conv(j)
                    write(*,*)'threshold',threshold(j,ibox)
                    write(*,*)'conv',conv(j,ilev)
                    frac_out(j,ibox,ilev) = 2
                else
                    ! = the same IF NOT threshold le conv(j) 
                    frac_out(j,ibox,ilev) = frac_out(j,ibox,ilev)
                end if
             enddo
           ENDDO

Inside cosp.F90
! Call to SCOPS
        ! strat and conv arrays are passed with levels from TOA to SURFACE.
        call scops(Npoints,Nlevels,Ncolumns,seed,tca_scops,cca_scops,overlap,sgx%frac_out,scops_debug)

        write(*,*)'max frac_out', maxval(sgx%frac_out)

 Sample output text:
 threshold  0.0000000E+00
 conv  0.0000000E+00
 max frac_out   2.000000 

Any feedback would be appreciated. 

Thanks,
Emily

--------
Emily Riley Dellaripa
Research Scientist I
Department of Atmospheric Science
Colorado State University
1371 Campus Delivery
Fort Collins, CO, 80523-1371
Email: em...@atmos.colostate.edu
Website: emilymriley.weebly.com

Klein, Stephen A.

unread,
Jul 20, 2017, 3:27:22 PM7/20/17
to cosp...@googlegroups.com

Dear Emily,

 

Thanks for identifying this issue. I will give it some attention soon, but fortunately it is a rare occurrence.

 

You could perform a check for me.  If you change the if statement from:

 

“if (threshold(j,ibox).le.conv(j,ilev)) “

 

to

 

“if (threshold(j,ibox).le.conv(j,ilev) .and. conv(j,ilev).gt.0.)  “

 

does this eliminate the problem?

 

Steve

--
You received this message because you are subscribed to the Google Groups "COSP users group" group.
To unsubscribe from this group and stop receiving emails from it, send an email to cosp-user+...@googlegroups.com.
For more options, visit http://secure-web.cisco.com/1RgdZrqHlZn5oQymv_G4TV5k6jMC-Ic7TJ4q43MoF8EP_MIt32K8vYoEVeHHYNbgkWI02LR2mdAcewsg7iDikj1Pji7NHzI1iIjYNGzOdq2wJsfPqEZlLD12G_WeeaTY8EHBwONIE5MCUTsSg3vLzY8OU5gKo6xltL3z8Qbcn_cvGu7YQXLMgFwwTSlhFT9yH9w6LuWNYKmmd9PHD0zY8vkbzDhaHTz-swAvv5lh6LWuwHx1t8jfuHYIqUvXplhEa9axxTY8ZkG3CuNT2SuJypAR0Obc-8mkztqLVfLIGxCWL0AucBDmaB0d3KaXeno9cjboDwHTVvyf8aQvqVkCzatjFQGQaWfHd8dt1b81x8HdnWmybII2b7pOkfuqzVfALaQm0vXjf_VQ-xvJETBi4J-659A3KPptvEG-7UCtfGdoae_ybVnKX0rEimf0_p2WfiWB_GzaajHQIVkJQ4ZwvmIQ9JZXZDwzgjoUB9WGSwc8V0AmbfYuogbJJMAyy26K_/l34%3Ahttps%3A%2F%2Fgroups.google.com%2Fd%2Foptoute.

Emily Riley

unread,
Jul 21, 2017, 12:06:41 PM7/21/17
to cosp...@googlegroups.com
Hi Steve,

I will run the check on Monday. I’m out of the office today. I’m assuming that additional check should work, though.

-Emily


You received this message because you are subscribed to a topic in the Google Groups "COSP users group" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/cosp-user/uUn3L4nI4bI/unsubscribe.
To unsubscribe from this group and all its topics, send an email to cosp-user+...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Emily Riley

unread,
Jul 24, 2017, 4:05:26 PM7/24/17
to cosp...@googlegroups.com
Hi Steve,

Your suggested fix helped. I no longer have any sub-columns inside scops.f assigned 2 (i.e., convective cloud) when my input file contains no convective cloud information.

Thanks for the suggestion,
Emily


On Jul 20, 2017, at 1:27 PM, Klein, Stephen A. <kle...@llnl.gov> wrote:

You received this message because you are subscribed to a topic in the Google Groups "COSP users group" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/cosp-user/uUn3L4nI4bI/unsubscribe.
To unsubscribe from this group and all its topics, send an email to cosp-user+...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Mark Webb

unread,
Jul 25, 2017, 9:47:31 AM7/25/17
to cosp...@googlegroups.com, Mark Webb
Dear Emily,

Congratulations on finding a bug in my code which no-one else has
spotted in the 17 years since I wrote it!

Although this is undeniably a bug, I don't think it will make
much difference to the simulator outputs other than frac_out,
as long as the convective cloud properties such as convective
cloud water etc are all initialised to zero. The only effect
it will have I think is to have a single clear pixel which is
vertically overlapped like a convective cloud rather than a
normal clear-sky pixel.

I'd be interested to know if fixing the bug has any effect on
the other simulator outputs.

Thanks,
Mark

On Mon, Jul 24, 2017 at 02:05:23PM -0600, Emily Riley wrote:
> Hi Steve,
> Your suggested fix helped. I no longer have any sub-columns inside scops.f
> assigned 2 (i.e., convective cloud) when my input file contains no
> convective cloud information.
> Thanks for the suggestion,
> Emily
>
> On Jul 20, 2017, at 1:27 PM, Klein, Stephen A. <[1]kle...@llnl.gov>
> wrote:
> Dear Emily,
>
> Thanks for identifying this issue. I will give it some attention soon,
> but fortunately it is a rare occurrence.
>
> You could perform a check for me. If you change the if statement from:
>
> "if (threshold(j,ibox).le.conv(j,ilev)) "
>
> to
>
> "if (threshold(j,ibox).le.conv(j,ilev) .and. conv(j,ilev).gt.0.) "
>
> does this eliminate the problem?
>
> Steve
>
> Email: [7]em...@atmos.colostate.edu
> Website: [8]emilymriley.weebly.com
>
> --
> You received this message because you are subscribed to the Google
> Groups "COSP users group" group.
> To unsubscribe from this group and stop receiving emails from it, send
> an email to [9]cosp-user+...@googlegroups.com.
> For more options,
> visit [10]http://secure-web.cisco.com/1RgdZrqHlZn5oQymv_G4TV5k6jMC-Ic7TJ4q43MoF8EP_MIt32K8vYoEVeHHYNbgkWI02LR2mdAcewsg7iDikj1Pji7NHzI1iIjYNGzOdq2wJsfPqEZlLD12G_WeeaTY8EHBwONIE5MCUTsSg3vLzY8OU5gKo6xltL3z8Qbcn_cvGu7YQXLMgFwwTSlhFT9yH9w6LuWNYKmmd9PHD0zY8vkbzDhaHTz-swAvv5lh6LWuwHx1t8jfuHYIqUvXplhEa9axxTY8ZkG3CuNT2SuJypAR0Obc-8mkztqLVfLIGxCWL0AucBDmaB0d3KaXeno9cjboDwHTVvyf8aQvqVkCzatjFQGQaWfHd8dt1b81x8HdnWmybII2b7pOkfuqzVfALaQm0vXjf_VQ-xvJETBi4J-659A3KPptvEG-7UCtfGdoae_ybVnKX0rEimf0_p2WfiWB_GzaajHQIVkJQ4ZwvmIQ9JZXZDwzgjoUB9WGSwc8V0AmbfYuogbJJMAyy26K_/l34%3Ahttps%3A%2F%2Fgroups.google.com%2Fd%2Foptoute.
>
> --
> You received this message because you are subscribed to a topic in the
> Google Groups "COSP users group" group.
> To unsubscribe from this topic,
> visit [11]https://groups.google.com/d/topic/cosp-user/uUn3L4nI4bI/unsubscribe.
> To unsubscribe from this group and all its topics, send an email
> to [12]cosp-user+...@googlegroups.com.
> For more options, visit [13]https://groups.google.com/d/optout.
>
> --
> You received this message because you are subscribed to the Google Groups
> "COSP users group" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to [14]cosp-user+...@googlegroups.com.
> For more options, visit [15]https://groups.google.com/d/optout.
>
> References
>
> Visible links
> 1. mailto:kle...@llnl.gov
> 2. mailto:cosp...@googlegroups.com
> 3. mailto:emilyr...@gmail.com
> 4. mailto:cosp...@googlegroups.com
> 5. mailto:cosp...@googlegroups.com
> 6. mailto:cosp...@googlegroups.com
> 7. mailto:em...@atmos.colostate.edu
> 8. http://emilymriley.weebly.com/
> 9. http://secure-web.cisco.com/1R7-oOQY_Fg5XApkAeYruMXIQsejv2KRbdHXexpypczVBBmTyLAD8H4QHLQJupEDr41Rbv73m-0WbD521-T3-jUM06Noa3k8Xs1pCbik9L_Qo5abGjPRl2OAo1XK1BZSYEggbpi-wmevqIwCqtjBh6lFD5w454TVpHvC4ldZ-Mr2RYeb4oP8vsKrcwtq6x_2l87_cVBJ2q8c24k5U6ouvzSJYGhYXcWi-7SoJrCSgPyMHhB4CXAQ6vCopE7hdP8Cy-EOvBapR4Vz_jI0XNtkj0iuZMMxQ0huoWBbzCZv5p10XlSHWZYrsBkQjmS7gxpbEUUub7YmCp5AWqj2IsPk0yu3vwfKErfaqkg6iXG3emSdUU8K0ioHmHNYbzdM9lJfQYsk-9TwWibAVykKSXEt5gfRZ6hb0Pm2fSxMgRkxE1qwwCHUBqAjBeKxS7B_Gn5GAaQe94RJJm2ff3cWHGIqIh71zGmMpuPdQQRHktY21sgAOgSjXlCKFtivS7BJkHlWd/l45%3Amailto%3Acosp-user%2Bunsubscribe%40googlegroups.come
> 10. http://secure-web.cisco.com/1RgdZrqHlZn5oQymv_G4TV5k6jMC-Ic7TJ4q43MoF8EP_MIt32K8vYoEVeHHYNbgkWI02LR2mdAcewsg7iDikj1Pji7NHzI1iIjYNGzOdq2wJsfPqEZlLD12G_WeeaTY8EHBwONIE5MCUTsSg3vLzY8OU5gKo6xltL3z8Qbcn_cvGu7YQXLMgFwwTSlhFT9yH9w6LuWNYKmmd9PHD0zY8vkbzDhaHTz-swAvv5lh6LWuwHx1t8jfuHYIqUvXplhEa9axxTY8ZkG3CuNT2SuJypAR0Obc-8mkztqLVfLIGxCWL0AucBDmaB0d3KaXeno9cjboDwHTVvyf8aQvqVkCzatjFQGQaWfHd8dt1b81x8HdnWmybII2b7pOkfuqzVfALaQm0vXjf_VQ-xvJETBi4J-659A3KPptvEG-7UCtfGdoae_ybVnKX0rEimf0_p2WfiWB_GzaajHQIVkJQ4ZwvmIQ9JZXZDwzgjoUB9WGSwc8V0AmbfYuogbJJMAyy26K_/l34%3Ahttps%3A%2F%2Fgroups.google.com%2Fd%2Foptoute
> 11. https://groups.google.com/d/topic/cosp-user/uUn3L4nI4bI/unsubscribe
> 12. mailto:cosp-user+...@googlegroups.com
> 13. https://groups.google.com/d/optout
> 14. mailto:cosp-user+...@googlegroups.com
> 15. https://groups.google.com/d/optout

--
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Mark Webb Climate Scientist
Met Office Hadley Centre
FitzRoy Road Exeter EX1 3PB United Kingdom
Tel: +44 (0)1392 884515 Fax: +44 (0)1392 885681
E-mail:mark...@metoffice.gov.uk http://www.metoffice.gov.uk
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Emily Riley

unread,
Jul 25, 2017, 3:05:50 PM7/25/17
to cosp...@googlegroups.com, Mark Webb
Hi Mark,

I’ve just been using the radar simulator. None of the cfad or dbze output was affected/changed by rectifying the bug.

-Emily
> To unsubscribe from this topic, visit https://groups.google.com/d/topic/cosp-user/uUn3L4nI4bI/unsubscribe.
> To unsubscribe from this group and all its topics, send an email to cosp-user+...@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.

Mark Webb

unread,
Jul 27, 2017, 8:09:08 AM7/27/17
to cosp...@googlegroups.com, Mark Webb
Emily,

> I???ve just been using the radar simulator. None of the cfad or dbze output was affected/changed by rectifying the bug.

That's good to hear.

Thanks,
Mark
> To unsubscribe from this group and stop receiving emails from it, send an email to cosp-user+...@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.

Zhang, Yuying

unread,
Jul 27, 2017, 4:20:31 PM7/27/17
to cosp...@googlegroups.com, Mark Webb
Hi Mark,

Based on my tests for the ISCCP/MODIS/MISR/CALIPSO simulators, the fixed bug has no effect on the other simulator outputs either.

Yuying


On 7/27/17, 5:09 AM, "cosp...@googlegroups.com on behalf of Mark Webb" <cosp...@googlegroups.com on behalf of Mark...@metoffice.gov.uk> wrote:

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
!!!! Unsubscribe !!!!
It appears that you have subscribed to commercial messages from this sender.
To stop receiving such messages from this sender, please unsubscribe : <http://secure-web.cisco.com/11XlWMCFQKW31dsb_wkxatrbgUs3znt5ItL-oRGq0DiQklpNKX-27mbpAMXiKTXzhS3YtVGXiKWzo1mXRwUFefvoZIkyxKkCyyLSBNFUT8FdAnzEE-hhMfR_2-qdQP00olDC6Lz-_58mWNdbcr2RqoW_KjlIXnmqSLus-YUuiwxkFXe4P76rxAXUEv25LBMq7hPz0_r0t_e7b8JX7VeH6ZRHKXASfAKwPrxEEace8cfFPPRS4jJqGJ8TRL6j5V7Wr5gBxRtLCrlfQPjs4nDoBlptfOlVm0iAOlViiNq1skXKKqu2uDFRusCEHCrqWipC5RyAI0mLC4T-hdDKm9BQBW-eg0EfzOykhuKEAX_jTF-XVARtJAWUDWPA7qncbC8weyEI9h5b851Jije-r4qvWIdR_ZWOZpMrrUZJeu-D5w5GLI3_PjR2ODDCBTfaUjuOWKBNcSFDSnPPIXill4D9OCBcTdmkmMyRbNbYcpwkaGoFs0Us4DT5bYgbetb_7LcU0/l68%3Amailto%3Agooglegroups-manage%2B689138333391%2Bunsubscribe%40googlegroups.com51%3Ahttps%3A%2F%2Fgroups.google.com%2Fgroup%2Fcosp-user%2Fsubscribe51%3Al34%3Ahttps%3A%2F%2Fgroups.google.com%2Fd%2Foptoute%20%20%20%20%20%20%20%20%20%20%20%2067%3Ahttps%3A%2F%2Fgroups.google.com%2Fd%2Ftopic%2Fcosp-user%2FuUn3L4nI4bI%2Funsubscribe34%3Ahttps%3A%2F%2Fgroups.google.com%2Fd%2Foptoute>
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
> >> visit [11]http://secure-web.cisco.com/1042FLDG-SV6fi_6xwu9copTSX5DsViMQt700X6A_AdRmlj6ZEXeRdUT-UJnEW4uHjoSgXeJSkF72t0zz6EmfjO1LZoho1GNoz_OI41VbOyVzb21W5Zh-pJ3zCu0LiewNC5DElEzIpojz_5B_IH_94D2S91F9PuW-T6HKg8HKC7jTmPIvdzSOlb2rOERJ5UVHNGUjQLgTVV5gfe-lazv1xuovdS8JSYQoV_q17pMap9cfhiXQ6lNPHE9BI7Vwfuv8AOaUqsy_21kX-ymibHobk3pOxhjLUtZzL8Hzfj6WX-lvP-NUSU12iPFlFc4b1iyMPi175s3UHdBq5suL7VezuRbpJPniFVFHITUyMxTWQOE6jg-p0QV8cnt75JWJ6-iB8REm5Nt5npujh2RJJe59IDLaIjevsyCY6EP3kxBBhx6JUTE4u83BDbvg-4arc6kUuS_m4oOcb0jly--HBsztT4hRBEoPJBRZxIVUcsOiX4UafLcSgQ5ONI-VyQOz2tVI/l67%3Ahttps%3A%2F%2Fgroups.google.com%2Fd%2Ftopic%2Fcosp-user%2FuUn3L4nI4bI%2Funsubscribee.
> >> To unsubscribe from this group and all its topics, send an email
> >> to [12]cosp-user+...@googlegroups.com.
> >> For more options, visit [13]http://secure-web.cisco.com/1MRynZoY_0dWx-9xH0SgwKzoKPA1wRg_v70_epkoSr6woJbTqSmc81pwKsE3qG2oXzH4Q8BeloSAh9aSK2Y9UOKSw85iPCi656ywWgrlmiUKyz_kEIKy5IoMgRuE2VlYICt4IiODSUqA-TzGCS8Mm0zks_mjO-Pn6u3Zm48_lvFsBtXf2daIFfcKNFyebMIl4XRoggcZa60jdFUHnDtSrc5Kowqs1f848LIxPkEekUZ3BkdW5mK2QvhWuZhJyiyf3cBBOA8Qi9i1hWlsiY45ajaZUQzAPl0PMRsB1qB6_qoHN0f3ZBzy5Q0xTq_A5nIVJkNwVkvNqhKRGbj7h4dyWbc3Bdq0ZvfJkBX5PALoWqDCrbVadcba37bp18_bXE3l-Oc-jJ-xYIEruLTLdYNCJzqMPlXMC8UVvKx-UNWXJETqc_yLqKAx0dNr-WnnMb6q1HUXqtuDGpJcGI3IhBtrg_oBOOa-CMnZ6Mpipi9-C_T7yhfIC7Jmw_2BJxiXcoRIu/l34%3Ahttps%3A%2F%2Fgroups.google.com%2Fd%2Foptoute.
> >>
> >> --
> >> You received this message because you are subscribed to the Google Groups
> >> "COSP users group" group.
> >> To unsubscribe from this group and stop receiving emails from it, send an
> >> email to [14]cosp-user+...@googlegroups.com.
> >> For more options, visit [15]http://secure-web.cisco.com/1MRynZoY_0dWx-9xH0SgwKzoKPA1wRg_v70_epkoSr6woJbTqSmc81pwKsE3qG2oXzH4Q8BeloSAh9aSK2Y9UOKSw85iPCi656ywWgrlmiUKyz_kEIKy5IoMgRuE2VlYICt4IiODSUqA-TzGCS8Mm0zks_mjO-Pn6u3Zm48_lvFsBtXf2daIFfcKNFyebMIl4XRoggcZa60jdFUHnDtSrc5Kowqs1f848LIxPkEekUZ3BkdW5mK2QvhWuZhJyiyf3cBBOA8Qi9i1hWlsiY45ajaZUQzAPl0PMRsB1qB6_qoHN0f3ZBzy5Q0xTq_A5nIVJkNwVkvNqhKRGbj7h4dyWbc3Bdq0ZvfJkBX5PALoWqDCrbVadcba37bp18_bXE3l-Oc-jJ-xYIEruLTLdYNCJzqMPlXMC8UVvKx-UNWXJETqc_yLqKAx0dNr-WnnMb6q1HUXqtuDGpJcGI3IhBtrg_oBOOa-CMnZ6Mpipi9-C_T7yhfIC7Jmw_2BJxiXcoRIu/l34%3Ahttps%3A%2F%2Fgroups.google.com%2Fd%2Foptoute.
> >>
> >> References
> >>
> >> Visible links
> >> 1. mailto:kle...@llnl.gov
> >> 2. mailto:cosp...@googlegroups.com
> >> 3. mailto:emilyr...@gmail.com
> >> 4. mailto:cosp...@googlegroups.com
> >> 5. mailto:cosp...@googlegroups.com
> >> 6. mailto:cosp...@googlegroups.com
> >> 7. mailto:em...@atmos.colostate.edu
> >> 8. http://emilymriley.weebly.com/
> >> 9. http://secure-web.cisco.com/1R7-oOQY_Fg5XApkAeYruMXIQsejv2KRbdHXexpypczVBBmTyLAD8H4QHLQJupEDr41Rbv73m-0WbD521-T3-jUM06Noa3k8Xs1pCbik9L_Qo5abGjPRl2OAo1XK1BZSYEggbpi-wmevqIwCqtjBh6lFD5w454TVpHvC4ldZ-Mr2RYeb4oP8vsKrcwtq6x_2l87_cVBJ2q8c24k5U6ouvzSJYGhYXcWi-7SoJrCSgPyMHhB4CXAQ6vCopE7hdP8Cy-EOvBapR4Vz_jI0XNtkj0iuZMMxQ0huoWBbzCZv5p10XlSHWZYrsBkQjmS7gxpbEUUub7YmCp5AWqj2IsPk0yu3vwfKErfaqkg6iXG3emSdUU8K0ioHmHNYbzdM9lJfQYsk-9TwWibAVykKSXEt5gfRZ6hb0Pm2fSxMgRkxE1qwwCHUBqAjBeKxS7B_Gn5GAaQe94RJJm2ff3cWHGIqIh71zGmMpuPdQQRHktY21sgAOgSjXlCKFtivS7BJkHlWd/l45%3Amailto%3Acosp-user%2Bunsubscribe%40googlegroups.come
> >> 10. http://secure-web.cisco.com/1RgdZrqHlZn5oQymv_G4TV5k6jMC-Ic7TJ4q43MoF8EP_MIt32K8vYoEVeHHYNbgkWI02LR2mdAcewsg7iDikj1Pji7NHzI1iIjYNGzOdq2wJsfPqEZlLD12G_WeeaTY8EHBwONIE5MCUTsSg3vLzY8OU5gKo6xltL3z8Qbcn_cvGu7YQXLMgFwwTSlhFT9yH9w6LuWNYKmmd9PHD0zY8vkbzDhaHTz-swAvv5lh6LWuwHx1t8jfuHYIqUvXplhEa9axxTY8ZkG3CuNT2SuJypAR0Obc-8mkztqLVfLIGxCWL0AucBDmaB0d3KaXeno9cjboDwHTVvyf8aQvqVkCzatjFQGQaWfHd8dt1b81x8HdnWmybII2b7pOkfuqzVfALaQm0vXjf_VQ-xvJETBi4J-659A3KPptvEG-7UCtfGdoae_ybVnKX0rEimf0_p2WfiWB_GzaajHQIVkJQ4ZwvmIQ9JZXZDwzgjoUB9WGSwc8V0AmbfYuogbJJMAyy26K_/l34%3Ahttps%3A%2F%2Fgroups.google.com%2Fd%2Foptoute
> >> 11. http://secure-web.cisco.com/1042FLDG-SV6fi_6xwu9copTSX5DsViMQt700X6A_AdRmlj6ZEXeRdUT-UJnEW4uHjoSgXeJSkF72t0zz6EmfjO1LZoho1GNoz_OI41VbOyVzb21W5Zh-pJ3zCu0LiewNC5DElEzIpojz_5B_IH_94D2S91F9PuW-T6HKg8HKC7jTmPIvdzSOlb2rOERJ5UVHNGUjQLgTVV5gfe-lazv1xuovdS8JSYQoV_q17pMap9cfhiXQ6lNPHE9BI7Vwfuv8AOaUqsy_21kX-ymibHobk3pOxhjLUtZzL8Hzfj6WX-lvP-NUSU12iPFlFc4b1iyMPi175s3UHdBq5suL7VezuRbpJPniFVFHITUyMxTWQOE6jg-p0QV8cnt75JWJ6-iB8REm5Nt5npujh2RJJe59IDLaIjevsyCY6EP3kxBBhx6JUTE4u83BDbvg-4arc6kUuS_m4oOcb0jly--HBsztT4hRBEoPJBRZxIVUcsOiX4UafLcSgQ5ONI-VyQOz2tVI/l67%3Ahttps%3A%2F%2Fgroups.google.com%2Fd%2Ftopic%2Fcosp-user%2FuUn3L4nI4bI%2Funsubscribee
> >> 12. mailto:cosp-user+...@googlegroups.com
> >> 13. http://secure-web.cisco.com/1MRynZoY_0dWx-9xH0SgwKzoKPA1wRg_v70_epkoSr6woJbTqSmc81pwKsE3qG2oXzH4Q8BeloSAh9aSK2Y9UOKSw85iPCi656ywWgrlmiUKyz_kEIKy5IoMgRuE2VlYICt4IiODSUqA-TzGCS8Mm0zks_mjO-Pn6u3Zm48_lvFsBtXf2daIFfcKNFyebMIl4XRoggcZa60jdFUHnDtSrc5Kowqs1f848LIxPkEekUZ3BkdW5mK2QvhWuZhJyiyf3cBBOA8Qi9i1hWlsiY45ajaZUQzAPl0PMRsB1qB6_qoHN0f3ZBzy5Q0xTq_A5nIVJkNwVkvNqhKRGbj7h4dyWbc3Bdq0ZvfJkBX5PALoWqDCrbVadcba37bp18_bXE3l-Oc-jJ-xYIEruLTLdYNCJzqMPlXMC8UVvKx-UNWXJETqc_yLqKAx0dNr-WnnMb6q1HUXqtuDGpJcGI3IhBtrg_oBOOa-CMnZ6Mpipi9-C_T7yhfIC7Jmw_2BJxiXcoRIu/l34%3Ahttps%3A%2F%2Fgroups.google.com%2Fd%2Foptoute
> >> 14. mailto:cosp-user+...@googlegroups.com
> >> 15. http://secure-web.cisco.com/1MRynZoY_0dWx-9xH0SgwKzoKPA1wRg_v70_epkoSr6woJbTqSmc81pwKsE3qG2oXzH4Q8BeloSAh9aSK2Y9UOKSw85iPCi656ywWgrlmiUKyz_kEIKy5IoMgRuE2VlYICt4IiODSUqA-TzGCS8Mm0zks_mjO-Pn6u3Zm48_lvFsBtXf2daIFfcKNFyebMIl4XRoggcZa60jdFUHnDtSrc5Kowqs1f848LIxPkEekUZ3BkdW5mK2QvhWuZhJyiyf3cBBOA8Qi9i1hWlsiY45ajaZUQzAPl0PMRsB1qB6_qoHN0f3ZBzy5Q0xTq_A5nIVJkNwVkvNqhKRGbj7h4dyWbc3Bdq0ZvfJkBX5PALoWqDCrbVadcba37bp18_bXE3l-Oc-jJ-xYIEruLTLdYNCJzqMPlXMC8UVvKx-UNWXJETqc_yLqKAx0dNr-WnnMb6q1HUXqtuDGpJcGI3IhBtrg_oBOOa-CMnZ6Mpipi9-C_T7yhfIC7Jmw_2BJxiXcoRIu/l34%3Ahttps%3A%2F%2Fgroups.google.com%2Fd%2Foptoute
> >
> > --
> > ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
> > Mark Webb Climate Scientist
> > Met Office Hadley Centre
> > FitzRoy Road Exeter EX1 3PB United Kingdom
> > Tel: +44 (0)1392 884515 Fax: +44 (0)1392 885681
> > E-mail:mark...@metoffice.gov.uk http://www.metoffice.gov.uk
> > ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
> >
> > --
> > You received this message because you are subscribed to a topic in the Google Groups "COSP users group" group.
> > To unsubscribe from this topic, visit http://secure-web.cisco.com/1042FLDG-SV6fi_6xwu9copTSX5DsViMQt700X6A_AdRmlj6ZEXeRdUT-UJnEW4uHjoSgXeJSkF72t0zz6EmfjO1LZoho1GNoz_OI41VbOyVzb21W5Zh-pJ3zCu0LiewNC5DElEzIpojz_5B_IH_94D2S91F9PuW-T6HKg8HKC7jTmPIvdzSOlb2rOERJ5UVHNGUjQLgTVV5gfe-lazv1xuovdS8JSYQoV_q17pMap9cfhiXQ6lNPHE9BI7Vwfuv8AOaUqsy_21kX-ymibHobk3pOxhjLUtZzL8Hzfj6WX-lvP-NUSU12iPFlFc4b1iyMPi175s3UHdBq5suL7VezuRbpJPniFVFHITUyMxTWQOE6jg-p0QV8cnt75JWJ6-iB8REm5Nt5npujh2RJJe59IDLaIjevsyCY6EP3kxBBhx6JUTE4u83BDbvg-4arc6kUuS_m4oOcb0jly--HBsztT4hRBEoPJBRZxIVUcsOiX4UafLcSgQ5ONI-VyQOz2tVI/l67%3Ahttps%3A%2F%2Fgroups.google.com%2Fd%2Ftopic%2Fcosp-user%2FuUn3L4nI4bI%2Funsubscribee.
> > To unsubscribe from this group and all its topics, send an email to cosp-user+...@googlegroups.com.
> > For more options, visit http://secure-web.cisco.com/1MRynZoY_0dWx-9xH0SgwKzoKPA1wRg_v70_epkoSr6woJbTqSmc81pwKsE3qG2oXzH4Q8BeloSAh9aSK2Y9UOKSw85iPCi656ywWgrlmiUKyz_kEIKy5IoMgRuE2VlYICt4IiODSUqA-TzGCS8Mm0zks_mjO-Pn6u3Zm48_lvFsBtXf2daIFfcKNFyebMIl4XRoggcZa60jdFUHnDtSrc5Kowqs1f848LIxPkEekUZ3BkdW5mK2QvhWuZhJyiyf3cBBOA8Qi9i1hWlsiY45ajaZUQzAPl0PMRsB1qB6_qoHN0f3ZBzy5Q0xTq_A5nIVJkNwVkvNqhKRGbj7h4dyWbc3Bdq0ZvfJkBX5PALoWqDCrbVadcba37bp18_bXE3l-Oc-jJ-xYIEruLTLdYNCJzqMPlXMC8UVvKx-UNWXJETqc_yLqKAx0dNr-WnnMb6q1HUXqtuDGpJcGI3IhBtrg_oBOOa-CMnZ6Mpipi9-C_T7yhfIC7Jmw_2BJxiXcoRIu/l34%3Ahttps%3A%2F%2Fgroups.google.com%2Fd%2Foptoute.
>
> --
> You received this message because you are subscribed to the Google Groups "COSP users group" group.
> To unsubscribe from this group and stop receiving emails from it, send an email to cosp-user+...@googlegroups.com.
> For more options, visit http://secure-web.cisco.com/1MRynZoY_0dWx-9xH0SgwKzoKPA1wRg_v70_epkoSr6woJbTqSmc81pwKsE3qG2oXzH4Q8BeloSAh9aSK2Y9UOKSw85iPCi656ywWgrlmiUKyz_kEIKy5IoMgRuE2VlYICt4IiODSUqA-TzGCS8Mm0zks_mjO-Pn6u3Zm48_lvFsBtXf2daIFfcKNFyebMIl4XRoggcZa60jdFUHnDtSrc5Kowqs1f848LIxPkEekUZ3BkdW5mK2QvhWuZhJyiyf3cBBOA8Qi9i1hWlsiY45ajaZUQzAPl0PMRsB1qB6_qoHN0f3ZBzy5Q0xTq_A5nIVJkNwVkvNqhKRGbj7h4dyWbc3Bdq0ZvfJkBX5PALoWqDCrbVadcba37bp18_bXE3l-Oc-jJ-xYIEruLTLdYNCJzqMPlXMC8UVvKx-UNWXJETqc_yLqKAx0dNr-WnnMb6q1HUXqtuDGpJcGI3IhBtrg_oBOOa-CMnZ6Mpipi9-C_T7yhfIC7Jmw_2BJxiXcoRIu/l34%3Ahttps%3A%2F%2Fgroups.google.com%2Fd%2Foptoute.

--
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Mark Webb Climate Scientist
Met Office Hadley Centre
FitzRoy Road Exeter EX1 3PB United Kingdom
Tel: +44 (0)1392 884515 Fax: +44 (0)1392 885681
E-mail:mark...@metoffice.gov.uk http://www.metoffice.gov.uk
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

--
You received this message because you are subscribed to the Google Groups "COSP users group" group.
To unsubscribe from this group and stop receiving emails from it, send an email to cosp-user+...@googlegroups.com.
For more options, visit http://secure-web.cisco.com/1MRynZoY_0dWx-9xH0SgwKzoKPA1wRg_v70_epkoSr6woJbTqSmc81pwKsE3qG2oXzH4Q8BeloSAh9aSK2Y9UOKSw85iPCi656ywWgrlmiUKyz_kEIKy5IoMgRuE2VlYICt4IiODSUqA-TzGCS8Mm0zks_mjO-Pn6u3Zm48_lvFsBtXf2daIFfcKNFyebMIl4XRoggcZa60jdFUHnDtSrc5Kowqs1f848LIxPkEekUZ3BkdW5mK2QvhWuZhJyiyf3cBBOA8Qi9i1hWlsiY45ajaZUQzAPl0PMRsB1qB6_qoHN0f3ZBzy5Q0xTq_A5nIVJkNwVkvNqhKRGbj7h4dyWbc3Bdq0ZvfJkBX5PALoWqDCrbVadcba37bp18_bXE3l-Oc-jJ-xYIEruLTLdYNCJzqMPlXMC8UVvKx-UNWXJETqc_yLqKAx0dNr-WnnMb6q1HUXqtuDGpJcGI3IhBtrg_oBOOa-CMnZ6Mpipi9-C_T7yhfIC7Jmw_2BJxiXcoRIu/l34%3Ahttps%3A%2F%2Fgroups.google.com%2Fd%2Foptoute.


dustin...@noaa.gov

unread,
Jul 27, 2017, 9:33:31 PM7/27/17
to COSP users group
Hi,

I will include this bug fix in the upcoming COSP2 release.
Emily, thanks again for pointing this bug out.

Cheers,
Dustin
Reply all
Reply to author
Forward
0 new messages