Changeset 8373 for trunk/anuga_core/source/anuga/shallow_water/sw_domain.h
- Timestamp:
- Mar 29, 2012, 5:28:53 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/anuga_core/source/anuga/shallow_water/sw_domain.h
r8371 r8373 15 15 double H0; 16 16 double g; 17 long optimise_dry_cells; 18 double flux_timestep; 17 19 18 20 long* neighbours; … … 22 24 double* radii; 23 25 double* areas; 26 24 27 long* tri_full_flag; 25 28 long* already_computed_flux; 29 double* max_speed; 26 30 27 31 double* vertex_coordinates; … … 65 69 *tri_full_flag, 66 70 *already_computed_flux, 67 *vertex_coordinates; 71 *vertex_coordinates, 72 *max_speed; 68 73 69 74 PyObject *quantities; … … 73 78 D->H0 = get_python_double(domain, "H0"); 74 79 D->g = get_python_double(domain, "g"); 80 D->optimise_dry_cells = get_python_integer(domain, "optimise_dry_cells"); 81 82 D->flux_timestep = get_python_double(domain, "flux_timestep"); 75 83 76 84 neighbours = get_consecutive_array(domain, "neighbours"); … … 100 108 vertex_coordinates = get_consecutive_array(domain, "vertex_coordinates"); 101 109 D->vertex_coordinates = (double *) vertex_coordinates->data; 110 111 max_speed = get_consecutive_array(domain, "max_speed"); 112 D->max_speed = (double *) max_speed->data; 113 102 114 103 115 quantities = get_python_object(domain, "quantities");
Note: See TracChangeset
for help on using the changeset viewer.