Changeset 8144


Ignore:
Timestamp:
Mar 10, 2011, 9:17:38 PM (14 years ago)
Author:
wilsonr
Message:

Removed '@brief' comments.

Location:
trunk/anuga_core/source/anuga/file
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/anuga_core/source/anuga/file/mux.py

    r7766 r8144  
    1818NORTH_VELOCITY_MUX2_LABEL = '-n-mux2'
    1919
    20 ##
    21 # @brief
    22 # @param filenames List of mux2 format input filenames.
    23 # @param weights Weights associated with each source file.
    24 # @param permutation The gauge numbers for which data is extracted.
    25 # @param verbose True if this function is to be verbose.
    26 # @return (times, latitudes, longitudes, elevation, quantity, starttime)
    2720def read_mux2_py(filenames,
    2821                 weights=None,
  • trunk/anuga_core/source/anuga/file/sww.py

    r8109 r8144  
    2727import numpy as num
    2828
    29 ##
    30 # @brief Generic class for storing output to e.g. visualisation or checkpointing
    3129class Data_format:
    3230    """Generic interface to data formats
    3331    """
    3432
    35     ##
    36     # @brief Instantiate this instance.
    37     # @param domain
    38     # @param extension
    39     # @param mode The mode of the underlying file.
    4033    def __init__(self, domain, extension, mode=netcdf_mode_w):
    4134        assert mode[0] in ['r', 'w', 'a'], \
     
    7164    """
    7265
    73     ##
    74     # @brief Instantiate this instance.
    75     # @param domain ??
    76     # @param mode Mode of the underlying data file.
    77     # @param max_size ??
    78     # @param recursion ??
    79     # @note Prepare the underlying data file if mode starts with 'w'.
    8066    def __init__(self, domain,
    8167                 mode=netcdf_mode_w, max_size=2000000000, recursion=False):
     
    167153        fid.close()
    168154
    169     ##
    170     # @brief Store connectivity data into the underlying data file.
    171155    def store_connectivity(self):
    172156        """Store information about nodes, triangles and static quantities
     
    213197        fid.close()
    214198
    215     ##
    216     # @brief Store time and time dependent quantities
    217     # to the underlying data file.
    218199    def store_timestep(self):
    219200        """Store time and time dependent quantities
     
    376357
    377358
    378 ##
    379 # @brief Class to open an sww file so that domain can be populated with quantity values
    380359class Read_sww:
    381360
     
    809788                    outfile.variables[q + Write_sww.RANGE][1] = q_values_max
    810789
    811     ##
    812     # @brief Print the quantities in the underlying file.
    813     # @param outfile UNUSED.
    814790    def verbose_quantities(self, outfile):
    815791        log.critical('------------------------------------------------')
     
    11281104
    11291105
    1130 ##
    1131 # @brief Interpolate a quantity wrt time.
    1132 # @param saved_quantity The quantity to interpolate.
    1133 # @param time_interp (index, ratio)
    1134 # @return A vector of interpolated values.
    11351106def interpolated_quantity(saved_quantity, time_interp):
    1136     '''Given an index and ratio, interpolate quantity with respect to time.'''
     1107    """Interpolate a quantity with respect to time.
     1108
     1109    saved_quantity  the quantity to interpolate
     1110    time_interp     (index, ratio)
     1111
     1112    Returns a vector of interpolated values.
     1113    """
    11371114
    11381115    index, ratio = time_interp
Note: See TracChangeset for help on using the changeset viewer.