Custom Query (116 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (49 - 51 of 116)

Ticket Owner Reporter Resolution Summary
#30 ymipsl aclsce fixed "Once" operation attribute
Description

When I define a field (for example "Areas" with the following attribute operation="once", it seems it is needed to do the "call xios_send_field("Areas",...)" every timestep of the model (defined thanks the call to xios_set_timestep). If I do only one call to "xios_send_field("Areas",...)", there is nothing as value of my field "Areas" in my file (only missing values)...I think it is not normal.

Thanks !

#31 ymipsl smasson fixed inheritance seen by get_attr
Description

It would be very convenient if get_attr could see teh attributes that are defined trough inheritance...
Another possibility would be to be able to get the id of its parent...

#33 ymipsl smasson fixed bugfix in attribute_array_impl.hpp?
Description

Should the following bugfix be commited?

-bash-4.1$ svn diff
Index: src/attribute_array_impl.hpp
===================================================================
--- src/attribute_array_impl.hpp        (revision 446)
+++ src/attribute_array_impl.hpp        (working copy)
@@ -75,8 +75,12 @@
     template <typename T_numtype, int N_rank>
     void CAttributeArray<T_numtype,N_rank>::setInheritedValue(const CAttributeArray& attr)
     {
-      if (this->isEmpty() && attr.hasInheritedValue()) inheritedValue=attr ;
-     } 
+      if (this->isEmpty() && attr.hasInheritedValue()) 
+      {
+        inheritedValue.resize(attr.shape()) ;
+        inheritedValue=attr ;
+      }
+    } 
 
     template <typename T_numtype, int N_rank>
     CArray<T_numtype,N_rank> CAttributeArray<T_numtype,N_rank>::getInheritedValue(void) const

Note: See TracQuery for help on using queries.