Пример #1
0
#!/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()
Пример #2
0
#!/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()

Пример #3
0
#!/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()

Пример #4
0
#!/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()

Пример #5
0
#!/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()
Пример #6
0
#!/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()
Пример #7
0
#!/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()
Пример #8
0
#!/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()