Changeset 2656 in lmdz_wrf
- Timestamp:
- Jul 3, 2019, 1:33:03 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tools/geometry_tools.py
r2653 r2656 64 64 # p_reg_polygon: Function to provide a regular polygon of Nv vertices 65 65 # p_reg_star: Function to provide a regular star of Nv vertices 66 # p_sinus iode: Function to get coordinates of a sinusoidal curve66 # p_sinusoide: Function to get coordinates of a sinusoidal curve 67 67 # p_square: Function to get a polygon square 68 68 # p_spiral: Function to provide a polygon of an Archimedean spiral … … 2086 2086 return reg_star 2087 2087 2088 def p_sinus iode(length=10., amp=5., lamb=3., ival=0., func='sin', N=100):2088 def p_sinusoide(length=10., amp=5., lamb=3., ival=0., func='sin', N=100): 2089 2089 """ Function to get coordinates of a sinusoidal curve 2090 2090 length: length of the line (default 10.) … … 2097 2097 N: number of points (default 100) 2098 2098 """ 2099 fname = 'p_sinus iode'2099 fname = 'p_sinusoide' 2100 2100 availfunc = ['sin', 'cos'] 2101 2101
Note: See TracChangeset
for help on using the changeset viewer.