Changeset 2656 in lmdz_wrf


Ignore:
Timestamp:
Jul 3, 2019, 1:33:03 AM (5 years ago)
Author:
lfita
Message:

Fixing name of sinusoide

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tools/geometry_tools.py

    r2653 r2656  
    6464# p_reg_polygon: Function to provide a regular polygon of Nv vertices
    6565# p_reg_star: Function to provide a regular star of Nv vertices
    66 # p_sinusiode: Function to get coordinates of a sinusoidal curve
     66# p_sinusoide: Function to get coordinates of a sinusoidal curve
    6767# p_square: Function to get a polygon square
    6868# p_spiral: Function to provide a polygon of an Archimedean spiral
     
    20862086    return reg_star
    20872087
    2088 def p_sinusiode(length=10., amp=5., lamb=3., ival=0., func='sin', N=100):
     2088def p_sinusoide(length=10., amp=5., lamb=3., ival=0., func='sin', N=100):
    20892089    """ Function to get coordinates of a sinusoidal curve
    20902090      length: length of the line (default 10.)
     
    20972097      N: number of points (default 100)
    20982098    """
    2099     fname = 'p_sinusiode'
     2099    fname = 'p_sinusoide'
    21002100    availfunc = ['sin', 'cos']
    21012101
Note: See TracChangeset for help on using the changeset viewer.