Skip to content
Snippets Groups Projects
Commit 5cf39e9b authored by Boman Romain's avatar Boman Romain
Browse files

add 750K model

parent a4820f43
No related branches found
No related tags found
No related merge requests found
Showing
with 144 additions and 0 deletions
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
#! /usr/bin/env python3
# -*- coding: utf-8 -*-
def parms(d={}):
p = {}
path = 'PLTtymFrankencarpus/750k'
p['mandible'] = f'{path}/PLTtym_750k_symph_lfs.stl'
p['teeth'] = [[-140.392929, 34.519073, 177.620209],
[-141.554642, -31.049093, 176.841354]]
p['LTMJ'] = [207.311279, -80.298553, 187.387451]
p['RTMJ'] = [202.485397, 112.689812, 189.151352]
p['muscles'] = [
{
'file': f'{path}/PLTtym_M_Adductor_externus_L1_lfs.stl',
'force': 487.38,
'focalpt': [146.982380, -77.664399, 278.479435],
'method': 'T' # 'U', 'T', 'T+N'
},
{
'file': f'{path}/PLTtym_M_Adductor_externus_L2_lfs.stl',
'force': 487.38,
'focalpt': [146.982380, -77.664399, 278.479435],
'method': 'T' # 'U', 'T', 'T+N'
},
{
'file': f'{path}/PLTtym_M_Adductor_externus_R1_lfs.stl',
'force': 452.79,
'focalpt': [138.878155, 84.493762, 284.866894],
'method': 'T' # 'U', 'T', 'T+N'
},
{
'file': f'{path}/PLTtym_M_Adductor_externus_R2_lfs.stl',
'force': 452.79,
'focalpt': [138.878155, 84.493762, 284.866894],
'method': 'T' # 'U', 'T', 'T+N'
},
{
'file': f'{path}/PLTtym_M_Adductor_externus_medialis_L_lfs.stl',
'force': 362.86,
'focalpt': [147.360255, -67.584745, 281.176887],
'method': 'T' # 'U', 'T', 'T+N'
},
{
'file': f'{path}/PLTtym_M_Adductor_externus_medialis_R_lfs.stl',
'force': 354.37,
'focalpt': [136.040621, 69.415241, 285.431467],
'method': 'T' # 'U', 'T', 'T+N'
},
{
'file': f'{path}/PLTtym_M_Adductor_mandibulae_profundus_L_lfs.stl',
'force': 233.63,
'focalpt': [190.286665, -73.222918, 239.986014],
'method': 'T' # 'U', 'T', 'T+N'
},
{
'file': f'{path}/PLTtym_M_Adductor_mandibulae_profundus_R_lfs.stl',
'force': 225.83,
'focalpt': [187.649314, 87.414657, 236.135409],
'method': 'T' # 'U', 'T', 'T+N'
},
{
'file': f'{path}/PLTtym_M_Pseudotemporalis_profundus_L_lfs.stl',
'force': 1537.52,
'focalpt': [153.241871, -37.103172, 275.752858],
'method': 'T' # 'U', 'T', 'T+N'
},
{
'file': f'{path}/PLTtym_M_Pseudotemporalis_profundus_R_lfs.stl',
'force': 1458.46,
'focalpt': [153.541222, 41.630166, 284.082309],
'method': 'T' # 'U', 'T', 'T+N'
},
{
'file': f'{path}/PLTtym_M_Pseudotemporalis_superficialis_L_lfs.stl',
'force': 272.44,
'focalpt': [116.915364, -29.987994, 276.369899],
'method': 'T' # 'U', 'T', 'T+N'
},
{
'file': f'{path}/PLTtym_M_Pseudotemporalis_superficialis_R_lfs.stl',
'force': 272.42,
'focalpt': [116.915364, 29.987994, 276.369899],
'method': 'T' # 'U', 'T', 'T+N'
}
]
p['fixations'] = {
'teeth': ['z'],
'LTMJ': ['x', 'z','y'],
'RTMJ': ['x', 'z','y']
}
# material properties
p['density'] = 1.850e-9 # [T/mm³] - bone: 1.850 kg/l
p['Young'] = 20000. # [MPa] elastic modulus - bone: 17-20 GPa
p['Poisson'] = 0.3 # [-] Poisson's ratio
p.update(d)
return p
def getMetafor(p={}):
import mandiblemodel as model
return model.getMetafor(parms(p))
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment