Ignore:
Timestamp:
Jan 30, 2014, 3:30:05 PM (10 years ago)
Author:
steve
Message:

small changes to anuga_1d code

Location:
trunk/anuga_work/development/2010-projects/anuga_1d/sww
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/anuga_work/development/2010-projects/anuga_1d/sww/sww_domain.py

    r8599 r9048  
    161161        #self.flux_timestep = comp_flux_ext(timestep,self,stage,xmom,bed)
    162162
    163         from anuga_1d.sww.sww_well_comp_flux_ext import compute_fluxes_vel_ext as comp_flux_ext
     163        from anuga_1d.sww.sww_vel_comp_flux_ext import compute_fluxes_vel_ext as comp_flux_ext
    164164        self.flux_timestep = comp_flux_ext(timestep,self,stage,xmom,bed,height,velocity)
    165165
  • trunk/anuga_work/development/2010-projects/anuga_1d/sww/sww_vel_comp_flux_ext.c

    r7884 r9048  
    404404                        &xmom,
    405405                        &bed)) {
    406       PyErr_SetString(PyExc_RuntimeError, "comp_flux_vel_ext.c: compute_fluxes_ext could not parse input");
     406      PyErr_SetString(PyExc_RuntimeError, "sww_vel_comp_flux_ext.c: compute_fluxes_ext could not parse input");
    407407      return NULL;
    408408  }
     
    527527                        &height,
    528528                        &velocity)) {
    529       PyErr_SetString(PyExc_RuntimeError, "comp_flux_vel_ext.c: compute_fluxes_vel_ext could not parse input");
     529      PyErr_SetString(PyExc_RuntimeError, "sww_vel_comp_flux_ext.c: compute_fluxes_vel_ext could not parse input");
    530530      printf("comp_flux_vel_ext.c: compute_fluxes_vel_ext could not parse input");
    531531      return NULL;
Note: See TracChangeset for help on using the changeset viewer.