Changeset 476 for inundation/ga/storm_surge/pyvolution/domain.py
- Timestamp:
- Nov 1, 2004, 3:49:47 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
inundation/ga/storm_surge/pyvolution/domain.py
r469 r476 45 45 self.quantities[name] = Quantity(self) 46 46 47 48 #FIXME: Move these explanations elsewhere49 50 47 #Create an empty list for explicit forcing terms 51 #52 # Explicit terms must have the form53 #54 # G(q, t)55 #56 # and explicit scheme is57 #58 # q^{(n+1}) = q^{(n)} + delta_t G(q^{n}, n delta_t)59 #60 #61 # FIXME: How to call and how function should look62 63 48 self.forcing_terms = [] 64 49 65 66 #Create an empty list for semi implicit forcing terms if any67 #68 # Semi implicit forcing terms are assumed to have the form69 #70 # G(q, t) = H(q, t) q71 #72 # and the semi implicit scheme will then be73 #74 # q^{(n+1}) = q^{(n)} + delta_t H(q^{n}, n delta_t) q^{(n+1})75 76 ###self.semi_implicit_forcing_terms = []77 50 78 51
Note: See TracChangeset
for help on using the changeset viewer.