Changeset 9048
- Timestamp:
- Jan 30, 2014, 3:30:05 PM (11 years ago)
- 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 161 161 #self.flux_timestep = comp_flux_ext(timestep,self,stage,xmom,bed) 162 162 163 from anuga_1d.sww.sww_ well_comp_flux_ext import compute_fluxes_vel_ext as comp_flux_ext163 from anuga_1d.sww.sww_vel_comp_flux_ext import compute_fluxes_vel_ext as comp_flux_ext 164 164 self.flux_timestep = comp_flux_ext(timestep,self,stage,xmom,bed,height,velocity) 165 165 -
trunk/anuga_work/development/2010-projects/anuga_1d/sww/sww_vel_comp_flux_ext.c
r7884 r9048 404 404 &xmom, 405 405 &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"); 407 407 return NULL; 408 408 } … … 527 527 &height, 528 528 &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"); 530 530 printf("comp_flux_vel_ext.c: compute_fluxes_vel_ext could not parse input"); 531 531 return NULL;
Note: See TracChangeset
for help on using the changeset viewer.