Custom Query (116 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (22 - 24 of 116)

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
Ticket Resolution Summary Owner Reporter
#43 wontfix Having the possibility of enforcing the addition of a axis to a file ymipsl millour
Description

So far if multiple axes are defined (e.g. axis1, axis2, etc.), but only one is used (e.g.all output fields in file are with axis_ref="axis2"), then it is the only axis written to the file.

Allowing users to specify that alternative axes, although not used, should be included in the output file would be useful.

Maybe by adding a flag output="always" to the axis (or file?) parameters?

#131 fixed Problem with number of months in user_defined calendar ymipsl millour
Description

In date.cpp, the function

void CDate::addMonth(int value) { Value doit être égale à 1 ou -1.

this->month += value; if (this->month == 13) { year++; this->month = 1; } if (this->month == 0) { year--; this->month = 12; }

}

Assumes that there are 12 months/year, which is not the case for a "user_defined" calendar. A more generic version could be:

void CDate::addMonth(int value) { Value doit être égale à 1 ou -1.

const CCalendar& c = getRelCalendar(); int nbMonth = c.getYearLength() ;

this->month += value; if (this->month == nbMonth+1) { year++; this->month = 1; } if (this->month == 0) { year--; this->month = nbMonth; }

}

#29 fixed Need more explicit error message ymipsl omamce
Description

Error message

=> Error [CDomain::checkAttributes(void)] : In file
'/ccc/work/cont003/dsm/p86mart/CPL/CM6-03/modeles/XIOS/src/node/domain.cpp',
line 267 -> the mask has not the same size than the local domain

An information on the local domain size and the mask size would be appreciated.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
Note: See TracQuery for help on using queries.