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