Ignore:
Timestamp:
Nov 1, 2004, 3:49:47 PM (20 years ago)
Author:
ole
Message:

Reimplemented unit tests for semi implicit updates and fixed comments.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • inundation/ga/storm_surge/pyvolution/domain.py

    r469 r476  
    4545            self.quantities[name] = Quantity(self)
    4646
    47 
    48         #FIXME: Move these explanations elsewhere   
    49            
    5047        #Create an empty list for explicit forcing terms
    51         #
    52         # Explicit terms must have the form
    53         #
    54         #    G(q, t)
    55         #
    56         # and explicit scheme is
    57         #
    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 look
    62 
    6348        self.forcing_terms = []
    6449
    65 
    66         #Create an empty list for semi implicit forcing terms if any
    67         #
    68         # Semi implicit forcing terms are assumed to have the form
    69         #
    70         #    G(q, t) = H(q, t) q
    71         #
    72         # and the semi implicit scheme will then be
    73         #
    74         #   q^{(n+1}) = q^{(n)} + delta_t H(q^{n}, n delta_t) q^{(n+1})
    75        
    76         ###self.semi_implicit_forcing_terms = []
    7750
    7851
Note: See TracChangeset for help on using the changeset viewer.