Changes between Initial Version and Version 1 of Ticket #227


Ignore:
Timestamp:
10/28/08 02:24:26 (16 years ago)
Author:
arango
Comment:

Yes, thank you. I screw up and I missed that possible combination of CPP options.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #227

    • Property ResolutionFixed
    • Property Status newclosed
    • Property Summary INLET_TEST failure due to src ticket 214INLET_TEST failure due to src:ticket:214
  • Ticket #227 – Description

    initial v1  
    1 Src ticket # 214 included:
     1src:ticket:214 included:
    22
    3 "Also the code to set the xxxx_FSOBC macros has been changed, eg this
    4 
     3"Also the code to set the '''xxxx_FSOBC''' macros has been changed, eg this
     4{{{
    55#if (defined WEST_FSRADIATION  && defined WEST_FSNUDGING)  || \
    66     defined WEST_M2FLATHER    || defined WEST_FSCLAMPED   || \
     
    88# define WEST_FSOBC
    99#endif
     10}}}
    1011has been changed to
    11 
     12{{{
    1213#if (defined WEST_FSRADIATION  && defined WEST_FSNUDGING)  || \
    1314     defined WEST_M2FLATHER    || defined WEST_FSCLAMPED
    1415# define WEST_FSOBC
    1516#endif
    16 The use of xxxx_M2REDUCED does not by itself mean that boundary surface-height data is required. For example it is possible to use xxxx_M2REDUCED with xxxx_FSCHAPMAN, in which case there is no need for xxxx_FSOBC. "
     17}}}
     18The use of '''xxxx_M2REDUCED''' does not by itself mean that boundary surface-height data is required. For example it is possible to use''' xxxx_M2REDUCED''' with '''xxxx_FSCHAPMAN''', in which case there is no need for '''xxxx_FSOBC'''. "
    1719
    1820********************
    1921
    20 Well WHAT ABOUT THE POSSIBILITY THAT IT DID REQUIRE THE NEED FOR xxxx_FSOBC?????
    21 The INLET_TEST uses :
     22Well WHAT ABOUT THE POSSIBILITY THAT IT DID REQUIRE THE NEED FOR '''xxxx_FSOBC'''?????
     23
     24The '''INLET_TEST''' uses :
     25
     26{{{
    2227#define FSOBC_REDUCED
    2328#define NORTH_FSGRADIENT
    2429#define NORTH_M2REDUCED
     30}}}
    2531
    26 The src214 change now removes the activation of the OBC flag, so the code never calls ana_fsobc and the tide is not added to the application!
     32The src:ticket:214 change now removes the activation of the OBC flag, so the code never calls '''ana_fsobc''' and the tide is not added to the application!
    2733
    28 Please modify the globaldefs.h file so that we CAN have xxxx_M2REDUCED and xxxx_FSOBC. This would be something like:
     34Please modify the '''globaldefs.h''' file so that we CAN have '''xxxx_M2REDUCED''' and '''xxxx_FSOBC'''. This would be something like:
     35
     36{{{
    2937#if (defined WEST_FSRADIATION  && defined WEST_FSNUDGING)  || \
    30      defined WEST_M2FLATHER    || defined WEST_FSCLAMPED   || \
    31      (defined WEST_M2REDUCED && defined FSOBC_REDUCED)
     38    (defined WEST_M2REDUCED    && defined FSOBC_REDUCED)   || \
     39     defined WEST_M2FLATHER    || defined WEST_FSCLAMPED
    3240# define WEST_FSOBC
    3341#endif
     42}}}
    3443(same for N,S, and E).
    3544