Changeset 8948
- Timestamp:
- Aug 4, 2013, 6:40:15 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/anuga_core/source/anuga/shallow_water/swb2_domain_ext.c
r8880 r8948 1283 1283 // Modified central flux function 1284 1284 1285 PyObject * compute_fluxes_ext_central(PyObject *self, PyObject *args) {1285 PyObject *swb2_compute_fluxes_ext_central(PyObject *self, PyObject *args) { 1286 1286 /*Compute all fluxes and the timestep suitable for all volumes 1287 1287 in domain. … … 1453 1453 1454 1454 1455 PyObject * flux_function_central(PyObject *self, PyObject *args) {1455 PyObject *swb2_flux_function_central(PyObject *self, PyObject *args) { 1456 1456 // 1457 1457 // Gateway to innermost flux function. … … 1500 1500 //======================================================================== 1501 1501 1502 PyObject * gravity(PyObject *self, PyObject *args) {1502 PyObject *swb2_gravity(PyObject *self, PyObject *args) { 1503 1503 // 1504 1504 // gravity(g, h, v, x, xmom, ymom) … … 1568 1568 1569 1569 1570 PyObject * extrapolate_second_order_edge_sw(PyObject *self, PyObject *args) {1570 PyObject *swb2_extrapolate_second_order_edge_sw(PyObject *self, PyObject *args) { 1571 1571 /*Compute the edge values based on a linear reconstruction 1572 1572 on each triangle … … 1719 1719 //======================================================================== 1720 1720 1721 PyObject * protect(PyObject *self, PyObject *args) {1721 PyObject *swb2_protect(PyObject *self, PyObject *args) { 1722 1722 // 1723 1723 // protect(minimum_allowed_height, maximum_allowed_speed, wc, zc, xmomc, ymomc) … … 1775 1775 */ 1776 1776 //{"rotate", (PyCFunction)rotate, METH_VARARGS | METH_KEYWORDS, "Print out"}, 1777 {"compute_fluxes_ext_central", compute_fluxes_ext_central, METH_VARARGS, "Print out"},1778 {"gravity_c", gravity, METH_VARARGS, "Print out"},1779 {"flux_function_central", flux_function_central, METH_VARARGS, "Print out"},1780 {"extrapolate_second_order_edge_sw", extrapolate_second_order_edge_sw, METH_VARARGS, "Print out"},1781 {"protect", protect, METH_VARARGS | METH_KEYWORDS, "Print out"},1777 {"compute_fluxes_ext_central", swb2_compute_fluxes_ext_central, METH_VARARGS, "Print out"}, 1778 {"gravity_c", swb2_gravity, METH_VARARGS, "Print out"}, 1779 {"flux_function_central", swb2_flux_function_central, METH_VARARGS, "Print out"}, 1780 {"extrapolate_second_order_edge_sw", swb2_extrapolate_second_order_edge_sw, METH_VARARGS, "Print out"}, 1781 {"protect", swb2_protect, METH_VARARGS | METH_KEYWORDS, "Print out"}, 1782 1782 {NULL, NULL, 0, NULL} 1783 1783 };
Note: See TracChangeset
for help on using the changeset viewer.