Marshall Ward

Results 147 comments of Marshall Ward

Thanks for pointing it out to me. There was another project (#42, #43) which had also repurposed the namelist syntax. We tried to include support, but there was ultimately too...

Thanks very much for replying to this, @smithsp and @orso82 and sorry for the slow response. Although the namelist syntax is non-compliant, it may be possible to silently add support...

Looks like broadcasting to fields of arrays of derived types is not currently working. This does work: ``` &example arr(1)%foo = 1.0, 2.0 arr(1)%bar = 3.0, 4.0 arr(2)%foo = 1.0,...

I realize I was unclear on what your example was supposed to produce. This is probably closer to what you were expecting: ``` &example arr(1)%foo = 1.0 arr(1)%bar = 3.0...

It looks like I made an absolute mess of derived type array handling, so I don't know if there's a quick fix here. Aside from the usual problems, there's a...

Are we not just talking about specifying grid points, which are pairs (tuples) of integers? I don't see what this problem has to do with integer type. If there's some...

Looking at `data_table.F90`, it seems that FMS is parsing the coords as a string, saves it to `spatial_ops` inside of a `field_description_type` struct, which is then moved into `regional_coords` if...

I'm sorry that I haven't answered, as this isn't something that I have looked at before or know much about. But I am guessing the issue is because you are...

Could I suggest that you integrate this into the [with-parallel-netcdf](https://github.com/NOAA-GFDL/FMS/tree/with-parallel-netcdf) branch? It is working in the ocean cases that we tested, has a proven performance benefit at the ~1500 MPI...

I think the issue was an ongoing rewrite of the FMS IO framework (on an internal build, I believe), and there was no simple way to integrate the PR into...