/usr/share/openturns/examples/t_QuickTest.py is in openturns-examples 1.3-3.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 | #! /usr/bin/env python
import os
width = 32
# check that python can load OpenTURNS module
print '1: Python module load'.ljust(width),
try:
import openturns as ot
print 'OK'
except:
print 'no'
# check that python can find the Viewer module
# If it fails, check that matplotlib package is installed
print '2: Viewer matplotlib'.ljust(width),
try:
import openturns.viewer
print 'OK'
except:
print 'no'
# check that OpenTURNS can run R
# It should produce two files named testDraw.png and testDraw.eps
print '3: R'.ljust(width),
try:
graph = ot.Normal().drawPDF()
fname = 'testDraw'
try:
graph.draw(fname, 640, 480, ot.GraphImplementation.PNG)
os.remove(fname + '.png')
except:
raise
print 'OK'
except:
print 'no'
# check that rot package is installed
print '4: R.rot'.ljust(width),
try:
lm = ot.LinearModelFactory().build(
ot.Normal(2).getSample(10), ot.Normal().getSample(10))
print 'OK'
except:
print 'no'
# check XML support
print '5: XML'.ljust(width),
try:
storageManager = ot.XMLStorageManager('myFile.xml')
print 'OK'
except:
print 'no'
# check that the sample wrappers are accessible
print '6: compiled wrappers'.ljust(width),
try:
f = ot.NumericalMathFunction('poutre')
print 'OK'
except:
print 'no'
# check that analytical function are available
print '7: analytical function'.ljust(width),
try:
f = ot.NumericalMathFunction(['x1', 'x2'], ['y'], ['x1+x2'])
print 'OK'
except:
print 'no'
|