02437eb530f261f45ae84071915a5c1950604f3c
[hooke.git] / test / zero_surface_contact_point.py
1 # Copyright (C) 2010-2012 W. Trevor King <wking@drexel.edu>
2 #
3 # This file is part of Hooke.
4 #
5 # Hooke is free software: you can redistribute it and/or modify it under the
6 # terms of the GNU Lesser General Public License as published by the Free
7 # Software Foundation, either version 3 of the License, or (at your option) any
8 # later version.
9 #
10 # Hooke is distributed in the hope that it will be useful, but WITHOUT ANY
11 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
12 # A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
13 # details.
14 #
15 # You should have received a copy of the GNU Lesser General Public License
16 # along with Hooke.  If not, see <http://www.gnu.org/licenses/>.
17
18 """
19 >>> from hooke.hooke import Hooke, HookeRunner
20 >>> h = Hooke()
21 >>> r = HookeRunner()
22 >>> h = r.run_lines(h, ['load_playlist test/data/test']) # doctest: +ELLIPSIS
23 <FilePlaylist test.hkp>
24 Success
25 <BLANKLINE>
26 >>> h = r.run_lines(h, ['zero_surface_contact_point --block retract']
27 ...     ) # doctest: +ELLIPSIS, +NORMALIZE_WHITESPACE, +REPORT_UDIFF
28 {...'fitted parameters': [8.413...e-08, 2.812...e-10, 158.581...],...}
29 Success
30 <BLANKLINE>
31 >>> curve = h.playlists.current().current()
32 >>> retract = curve.data[1]
33 >>> retract.info['columns']
34 ['z piezo (m)', 'deflection (m)', 'surface distance (m)', 'surface deflection (m)']
35 >>> retract[:5,-2:]  # doctest: +ELLIPSIS
36 Data([[ -3.387...e-08,  -4.1686...e-08],
37        [ -3.387...e-08,  -4.161...e-08],
38        [ -3.356...e-08,  -4.157...e-08],
39        [ -3.417...e-08,  -4.161...e-08],
40        [ -3.387...e-08,  -4.161...e-08]])
41 >>> retract[-5:,-2:]  # doctest: +ELLIPSIS
42 Data([[  4.501...e-07,  -1.178...e-09],
43        [  4.501...e-07,  -1.156...e-09],
44        [  4.501...e-07,  -1.269...e-09],
45        [  4.510...e-07,  -1.518...e-09],
46        [  4.513...e-07,  -8.613...e-10]])
47 """