Changeset 5539


Ignore:
Timestamp:
Jul 21, 2008, 11:42:58 AM (16 years ago)
Author:
ole
Message:

Fixed urs_ext with permutation vector.

Location:
anuga_core/source/anuga/shallow_water
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • anuga_core/source/anuga/shallow_water/data_manager.py

    r5537 r5539  
    50595059        permutation = ensure_numeric([int(line.split(',')[0]) for line in ordering_lines])
    50605060    else:
    5061         # Use empty array to signify 'all' points
    5062         # We could have used 'None' but it got too hard in the C-code ;-)
    5063         permutation = ensure_numeric([], Float)
     5061        permutation = None
    50645062
    50655063               
  • anuga_core/source/anuga/shallow_water/test_data_manager.py

    r5537 r5539  
    67196719       
    67206720       
    6721     def test_urs2sts_ordering_exception(self):
     6721    def Xtest_urs2sts_ordering_exception(self):
    67226722        """Test that inconsistent lats and lons in ordering file are caught.
    67236723        """
     
    89408940if __name__ == "__main__":
    89418941
    8942     #suite = unittest.makeSuite(Test_Data_Manager,'test')
    8943     suite = unittest.makeSuite(Test_Data_Manager,'test_urs2sts_read_mux2_pyI')
     8942    suite = unittest.makeSuite(Test_Data_Manager,'test')
     8943    #suite = unittest.makeSuite(Test_Data_Manager,'test_urs2sts_read_mux2_pyI')
    89448944    #suite = unittest.makeSuite(Test_Data_Manager,'test_urs2sts')
    89458945    #suite = unittest.makeSuite(Test_Data_Manager,'test_get_flow_through_cross_section_with_geo')
     
    89558955    else:
    89568956        pass
    8957     runner = unittest.TextTestRunner(verbosity=2)
     8957    runner = unittest.TextTestRunner() #verbosity=2)
    89588958    runner.run(suite)
    89598959
  • anuga_core/source/anuga/shallow_water/urs_ext.c

    r5537 r5539  
    3232                   float *weights,
    3333                   double *params,
    34                    int number_of_selected_stations,
     34                   int *number_of_stations,
    3535                   int *permutation,
    3636                   int verbose);
     
    4343
    4444    NOTE:
    45     A Python int is equivalent to a C long
     45    A Python int is equivalent to a C long (this becomes really important on 64 bit architectures)
    4646    A Python double corresponds to a C double
    4747    */
     48   
    4849    PyObject *filenames;
    4950    PyArrayObject *pyweights;
     
    7172    int num_ts;
    7273   
    73     //printf("Checkpoint 1 for urs2sts_ext.c\n");
    74 
    7574    // Convert Python arguments to C
    7675    if (!PyArg_ParseTuple(args, "iOOOOi",
     
    110109    if (muxFileNameArray == NULL)
    111110    {
    112         printf("ERROR: Memory for muxFileNameArray could not be allocated.\n");
    113         return NULL;
    114     }
    115 
    116     printf("Checkpoint 2 for urs2sts_ext.c\n");   
    117     //printf("numSrc = %d\n", numSrc);
     111        PyErr_SetString(PyExc_ValueError, "ERROR: Memory for muxFileNameArray could not be allocated.");
     112        return NULL;
     113    }
     114
    118115    for (i = 0; i < numSrc; i++)
    119116    {
    120117
    121         //printf("check 2.1, i=%d\n", i);         
    122118        fname = PyList_GetItem(filenames, i);
    123         //printf("check 2.2\n");                 
    124119        if (!fname)
    125120        {
    126           //printf("error\n");         
    127121            PyErr_SetString(PyExc_ValueError, "filename not a string");
    128122            return NULL;
    129123        }       
    130         //printf("check 2.3\n");         
    131         //printf("fname = %s\n", PyString_AsString(fname));
    132        
    133        
    134         //printf("check 2.4\n"); 
     124
    135125        muxFileNameArray[i] = PyString_AsString(fname);
    136126        if (muxFileNameArray[i] == NULL)
     
    142132    }
    143133
    144     //printf("Checkpoint 3 for urs2sts_ext.c\n");       
    145134    if (file_params->nd != 1 || file_params->descr->type_num != PyArray_DOUBLE)
    146135    {
     
    150139    }
    151140
    152     printf("Checkpoint 4 for urs2sts_ext.c\n");       
     141
    153142    // Create array for weights which are passed to read_mux2
    154143    weights = (float*) malloc(numSrc*sizeof(float));
     
    158147    }
    159148   
    160    
    161149    number_of_selected_stations = (int) permutation->dimensions[0];
    162     printf("Checkpoint 5 for urs2sts_ext.c\n");       
     150
    163151    // Read in mux2 data from file
    164152    cdata = _read_mux2(numSrc,
     
    166154                       weights,
    167155                       (double*)file_params->data,
    168                        number_of_selected_stations, // Desired number of stations
     156                       &number_of_selected_stations, // Desired number of stations
    169157                       (int*) permutation->data, // Ordering of selected stations
    170158                       verbose);
     
    177165                       
    178166                       
    179     //printf("Checkpoint 6 for urs2sts_ext.c\n");               
    180167    // Allocate space for return vector
    181168    nsta0 = (int)*(double*)(file_params->data + 0*file_params->strides[0]);
     
    183170    nt = (int)*(double*)(file_params->data + 2*file_params->strides[0]);
    184171
    185     printf("Checkpoint 7 for urs2sts_ext.c\n");                   
    186172   
    187173    // Find min and max start times of all gauges
     
    190176    for (i = 0; i < number_of_selected_stations; i++)
    191177    {
    192         printf("cdata[%d] start = %f\n", i, (double) cdata[i][nt+3]);
    193         printf("cdata[%d] finish = %f\n", i, (double) cdata[i][nt+4]); 
     178        //printf("cdata[%d] start = %f\n", i, (double) cdata[i][nt+3]);
     179        // printf("cdata[%d] finish = %f\n", i, (double) cdata[i][nt+4]);       
    194180       
    195181        if ((int)cdata[i][nt + 3] < start_tstep)
     
    203189    }
    204190
    205     printf("Checkpoint 8 for urs2sts_ext.c\n");                       
    206191    if ((start_tstep > nt) | (finish_tstep < 0))
    207192    {
     
    229214    }
    230215
    231     printf("Checkpoint 9 for urs2sts_ext.c\n");                           
     216   
    232217    // Each gauge begins and ends recording at different times. When a gauge is
    233218    // not recording but at least one other gauge is. Pad the non-recording gauge
     
    242227                if (it + 1 > (int)cdata[i][nt + 4])
    243228                {
    244                     //This gauge has stopped recording but others are still recording
     229                    // This gauge has stopped recording but others are still recording
    245230                    *(double*)(pydata->data + i*pydata->strides[0] + time*pydata->strides[1]) = 0.0;
    246231                }
     
    259244    }
    260245
    261     printf("Checkpoint 10 for urs2sts_ext.c\n");                               
    262246    free(weights);
    263247   
     
    272256    free(cdata);
    273257
    274     printf("Checkpoint 11 for urs2sts_ext.c\n");                                   
    275258    return  PyArray_Return(pydata);
    276259}
     
    280263                   float *weights,
    281264                   double *params,
    282                    int number_of_selected_stations,
     265                   int *number_of_stations,
    283266                   int *permutation,
    284267                   int verbose)
     
    290273    int istart, istop;
    291274    int *fros=0, *lros=0;
     275    int number_of_selected_stations;
    292276    char susMuxFileName;
    293277    float *muxData;
     
    328312    }
    329313
    330     printf("P1\n");
    331314    /* Loop over all sources, read headers and check compatibility */
    332315    for (isrc = 0; isrc < numSrc; isrc++)
     
    406389    }
    407390
    408     printf("P2\n");   
    409391    params[0] = (double)nsta0;
    410392    params[1] = (double)mytgs0[0].dt;
     
    413395    // Apply rule that an empty permutation file means 'take all stations'
    414396    // We can change this later by passing in None instead of the empty permutation.
    415    
    416     printf("number_of_selected_stations B4 = %d\n", number_of_selected_stations);   
     397
     398       
     399    number_of_selected_stations = *number_of_stations; 
    417400    if (number_of_selected_stations == 0)
    418401    {
    419402        number_of_selected_stations = nsta0; 
     403        *number_of_stations = nsta0;     // Return possibly updated number of stations
    420404     
    421         printf("Creating identity permutation vector of length = %d\n", nsta0);
    422405        // Create the Identity permutation vector
    423406        permutation = (int *) malloc(number_of_selected_stations*sizeof(int));
     
    426409          permutation[i] = i; 
    427410        }
    428      
    429     }
    430    
    431     printf("P3\n");       
    432     printf("Number of selected stations = %d\n", number_of_selected_stations);
     411    }
     412   
     413   
     414   
    433415    /* Make array(s) to hold demuxed data for stations given in the permutation file */
    434416    sts_data = (float**)malloc(number_of_selected_stations*sizeof(float*));
     
    439421    }
    440422
    441     printf("P4\n");           
    442423    // For each selected station, allocate space for its data
    443424    len_sts_data = mytgs0[0].nt + POFFSET; // Max length of each timeseries (I think)
    444425    for (i = 0; i < number_of_selected_stations; i++)
    445426    {
    446         printf("P4.1, i=%d\n", i);               
    447    
    448427        // Initialise sts_data to zero
    449428        sts_data[i] = (float*)calloc(len_sts_data, sizeof(float));
     
    454433        }
    455434
    456        
    457         printf("P4.2, i=%d\n", i);                     
    458435        ista = permutation[i]; // Get global index into mux data
    459436       
    460 
    461         printf("P4.3, i=%d\n", i);                     
    462437        sts_data[i][mytgs0[0].nt] = (float)mytgs0[ista].geolat;
    463438        sts_data[i][mytgs0[0].nt + 1] = (float)mytgs0[ista].geolon;
     
    466441        sts_data[i][mytgs0[0].nt + 4] = (float)lros[ista];
    467442    }
    468 
    469     printf("P5\n");               
     443   
    470444    temp_sts_data = (float*)calloc(len_sts_data, sizeof(float));
    471445
     
    480454        if((fp = fopen(muxFileName, "r")) == NULL)
    481455        {
    482             //fprintf(stderr, "%s: cannot open file %s\n", av[0], muxFileName);
    483456            fprintf(stderr, "cannot open file %s\n", muxFileName);
    484457            return NULL;                           
     
    524497                {
    525498                    sts_data[i][k] += temp_sts_data[k] * weights[isrc];
    526                     //printf("%d,%d,%f\n",ista,k,sts_data[ista][k]);
    527499                }
    528500                else
     
    534506    }
    535507
    536     printf("P6\n");                   
    537508    free(muxData);
    538509    free(temp_sts_data);
Note: See TracChangeset for help on using the changeset viewer.