#!/usr/bin/env python3 # -*- coding: utf-8 -*- """ Created on Tue Mar 19 16:07:48 2019 @author: pantale """ import dnlBench test = dnlBench.Benchmark('Taylor') test.setPlotFiles(['temperature.plot', 'vonMises.plot', 'plasticStrain.plot']) test.setTolerance(1e-1) test.run()
#!/usr/bin/env python3 # -*- coding: utf-8 -*- """ Created on Tue Mar 19 16:07:48 2019 @author: pantale """ import dnlBench test = dnlBench.Benchmark('Shear') test.setPlotFiles(['Stress.plot']) test.setTolerance(1e-1) test.run()
#!/usr/bin/env python3 # -*- coding: utf-8 -*- """ Created on Tue Mar 19 16:07:48 2019 @author: pantale """ import dnlBench test = dnlBench.Benchmark('Tensile') test.setPlotFiles(['density.plot', 'temperature.plot', 'vonMises.plot', 'plasticStrain.plot', 'Stress.plot']) test.setTolerance(1e-1) test.run()
#!/usr/bin/env python3 # -*- coding: utf-8 -*- """ Created on Tue Mar 19 16:07:48 2019 @author: pantale """ import dnlBench test = dnlBench.Benchmark('Torus') test.setPlotFiles(['density.plot', 'temperature.plot', 'vonMises.plot', 'plasticStrain.plot', 'Stress.plot']) test.setTolerance(1e-1) test.run()
#!/usr/bin/env python3 # -*- coding: utf-8 -*- """ Created on Tue Mar 19 16:07:48 2019 @author: pantale """ import dnlBench test = dnlBench.Benchmark('BarNecking') test.setPlotFiles(['temperature.plot', 'vonMises.plot', 'plasticStrain.plot']) test.setTolerance(1e-1) test.run()
#!/usr/bin/env python3 # -*- coding: utf-8 -*- """ Created on Tue Mar 19 16:07:48 2019 @author: pantale """ import dnlBench test = dnlBench.Benchmark('Radial') test.setPlotFiles([ 'density.plot', 'temperature.plot', 'vonMises.plot', 'plasticStrain.plot', 'Stress.plot' ]) test.setTolerance(1e-1) test.run()
#!/usr/bin/env python3 # -*- coding: utf-8 -*- """ Created on Tue Mar 19 16:07:48 2019 @author: pantale """ import dnlBench test = dnlBench.Benchmark('PlateNecking') test.setPlotFiles(['temperature.plot', 'vonMises.plot', 'plasticStrain.plot']) test.setTolerance(1e-1) test.run()
#!/usr/bin/env python3 # -*- coding: utf-8 -*- """ Created on Tue Mar 19 16:07:48 2019 @author: pantale """ import dnlBench test = dnlBench.Benchmark('Shear-Elastic') test.setPlotFiles(['Stress.plot']) test.setTolerance(1e-1) test.run()