602 lines
31 KiB
Python
602 lines
31 KiB
Python
# ***************************************************************************
|
|
# * *
|
|
# * Copyright (c) 2013 Juergen Riegel <FreeCAD@juergen-riegel.net> *
|
|
# * *
|
|
# * This program is free software; you can redistribute it and/or modify *
|
|
# * it under the terms of the GNU Lesser General Public License (LGPL) *
|
|
# * as published by the Free Software Foundation; either version 2 of *
|
|
# * the License, or (at your option) any later version. *
|
|
# * for detail see the LICENCE text file. *
|
|
# * *
|
|
# * This program is distributed in the hope that it will be useful, *
|
|
# * but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
# * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
|
# * GNU Library General Public License for more details. *
|
|
# * *
|
|
# * You should have received a copy of the GNU Library General Public *
|
|
# * License along with this program; if not, write to the Free Software *
|
|
# * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 *
|
|
# * USA *
|
|
# * *
|
|
# ***************************************************************************
|
|
|
|
__title__ = "FreeCAD FEM material ViewProvider for the document object"
|
|
__author__ = "Juergen Riegel, Bernd Hahnebach"
|
|
__url__ = "http://www.freecadweb.org"
|
|
|
|
## @package _ViewProviderFemMaterial
|
|
# \ingroup FEM
|
|
# \brief FreeCAD FEM _ViewProviderFemMaterial
|
|
|
|
import FreeCAD
|
|
import FreeCADGui
|
|
import FemGui # needed to display the icons in TreeView
|
|
False if False else FemGui.__name__ # dummy usage of FemGui for flake8, just returns 'FemGui'
|
|
|
|
# for the panel
|
|
from FreeCAD import Units
|
|
from . import FemSelectionWidgets
|
|
from PySide import QtCore
|
|
from PySide import QtGui
|
|
import sys
|
|
if sys.version_info.major >= 3:
|
|
unicode = str
|
|
|
|
|
|
class _ViewProviderFemMaterial:
|
|
"A View Provider for the FemMaterial object"
|
|
|
|
def __init__(self, vobj):
|
|
vobj.Proxy = self
|
|
|
|
def getIcon(self):
|
|
return ":/icons/fem-material.svg"
|
|
|
|
def attach(self, vobj):
|
|
self.ViewObject = vobj
|
|
self.Object = vobj.Object
|
|
|
|
def updateData(self, obj, prop):
|
|
return
|
|
|
|
def onChanged(self, vobj, prop):
|
|
return
|
|
|
|
def setEdit(self, vobj, mode):
|
|
# hide all meshes
|
|
for o in FreeCAD.ActiveDocument.Objects:
|
|
if o.isDerivedFrom("Fem::FemMeshObject"):
|
|
o.ViewObject.hide()
|
|
# show task panel
|
|
taskd = _TaskPanelFemMaterial(self.Object)
|
|
taskd.obj = vobj.Object
|
|
FreeCADGui.Control.showDialog(taskd)
|
|
return True
|
|
|
|
def unsetEdit(self, vobj, mode):
|
|
FreeCADGui.Control.closeDialog()
|
|
return True
|
|
|
|
# overwrite the doubleClicked of material object python to make sure no other Material taskd (and thus no selection observer) is still active
|
|
def doubleClicked(self, vobj):
|
|
guidoc = FreeCADGui.getDocument(vobj.Object.Document)
|
|
# check if another VP is in edit mode, https://forum.freecadweb.org/viewtopic.php?t=13077#p104702
|
|
if not guidoc.getInEdit():
|
|
guidoc.setEdit(vobj.Object.Name)
|
|
else:
|
|
from PySide.QtGui import QMessageBox
|
|
message = 'Active Task Dialog found! Please close this one before opening a new one!'
|
|
QMessageBox.critical(None, "Error in tree view", message)
|
|
FreeCAD.Console.PrintError(message + '\n')
|
|
return True
|
|
|
|
def __getstate__(self):
|
|
return None
|
|
|
|
def __setstate__(self, state):
|
|
return None
|
|
|
|
|
|
class _TaskPanelFemMaterial:
|
|
'''The editmode TaskPanel for FemMaterial objects'''
|
|
|
|
def __init__(self, obj):
|
|
|
|
self.obj = obj
|
|
self.material = self.obj.Material # FreeCAD material dictionary of current material
|
|
self.card_path = ''
|
|
self.materials = {} # { card_path : FreeCAD material dict }
|
|
# mat_card is the FCMat file
|
|
# card_name is the file name of the mat_card
|
|
# card_path is the whole file path of the mat_card
|
|
# material_name is the value of the key name in FreeCAD material dictionary
|
|
# they might not match because of special letters in the material_name which are changed in the card_name to english standard characters
|
|
self.has_transient_mat = False
|
|
|
|
# parameter widget
|
|
self.parameterWidget = FreeCADGui.PySideUic.loadUi(FreeCAD.getHomePath() + "Mod/Fem/Resources/ui/Material.ui")
|
|
# globals
|
|
QtCore.QObject.connect(self.parameterWidget.cb_materials, QtCore.SIGNAL("activated(int)"), self.choose_material)
|
|
QtCore.QObject.connect(self.parameterWidget.chbu_allow_edit, QtCore.SIGNAL("clicked()"), self.toggleInputFieldsReadOnly)
|
|
QtCore.QObject.connect(self.parameterWidget.pushButton_editMat, QtCore.SIGNAL("clicked()"), self.edit_material)
|
|
# basic properties must be provided
|
|
QtCore.QObject.connect(self.parameterWidget.input_fd_density, QtCore.SIGNAL("valueChanged(double)"), self.density_changed)
|
|
# mechanical properties
|
|
QtCore.QObject.connect(self.parameterWidget.input_fd_young_modulus, QtCore.SIGNAL("valueChanged(double)"), self.ym_changed)
|
|
QtCore.QObject.connect(self.parameterWidget.spinBox_poisson_ratio, QtCore.SIGNAL("valueChanged(double)"), self.pr_changed)
|
|
# thermal properties
|
|
QtCore.QObject.connect(self.parameterWidget.input_fd_thermal_conductivity, QtCore.SIGNAL("valueChanged(double)"), self.tc_changed)
|
|
QtCore.QObject.connect(self.parameterWidget.input_fd_expansion_coefficient, QtCore.SIGNAL("valueChanged(double)"), self.tec_changed)
|
|
QtCore.QObject.connect(self.parameterWidget.input_fd_specific_heat, QtCore.SIGNAL("valueChanged(double)"), self.sh_changed)
|
|
# fluidic properties, only volumetric thermal expansion coeff makes sense
|
|
QtCore.QObject.connect(self.parameterWidget.input_fd_kinematic_viscosity, QtCore.SIGNAL("valueChanged(double)"), self.kinematic_viscosity_changed)
|
|
QtCore.QObject.connect(self.parameterWidget.input_fd_vol_expansion_coefficient, QtCore.SIGNAL("valueChanged(double)"), self.vtec_changed)
|
|
|
|
# init all parameter input files with read only
|
|
self.parameterWidget.chbu_allow_edit.setCheckState(QtCore.Qt.CheckState.Unchecked)
|
|
self.toggleInputFieldsReadOnly()
|
|
|
|
# hide some groupBox according to material category
|
|
self.parameterWidget.label_category.setText(self.obj.Category)
|
|
if self.obj.Category == 'Fluid':
|
|
self.parameterWidget.groupBox_mechanical.setVisible(0)
|
|
self.parameterWidget.label_expansion_coefficient.setVisible(0)
|
|
self.parameterWidget.input_fd_expansion_coefficient.setVisible(0)
|
|
else:
|
|
self.parameterWidget.groupBox_fluidic.setVisible(0)
|
|
self.parameterWidget.label_vol_expansion_coefficient.setVisible(0)
|
|
self.parameterWidget.input_fd_vol_expansion_coefficient.setVisible(0)
|
|
|
|
# fill self.materials dict and fill the combobox with material cards
|
|
self.import_materials()
|
|
|
|
# search for exact this mat_card in all known cards, choose the current material
|
|
self.card_path = self.get_material_card(self.material)
|
|
print('card_path: ' + self.card_path)
|
|
if not self.card_path:
|
|
# we have not found our material in self.materials dict :-(
|
|
# we're going to add a user-defined temporary material: a document material
|
|
FreeCAD.Console.PrintMessage("Previously used material card cannot be found in material directories. Add document material.\n")
|
|
self.card_path = '_document_material'
|
|
self.materials[self.card_path] = self.material
|
|
self.parameterWidget.cb_materials.addItem(QtGui.QIcon(":/icons/help-browser.svg"), self.card_path, self.card_path)
|
|
index = self.parameterWidget.cb_materials.findData(self.card_path)
|
|
# print(index)
|
|
self.choose_material(index) # fill input fields and set the current material in the cb widget
|
|
else:
|
|
# we found our exact material in self.materials dict :-)
|
|
FreeCAD.Console.PrintMessage("Previously used material card was found in material directories. We will use this material.\n")
|
|
index = self.parameterWidget.cb_materials.findData(self.card_path)
|
|
# print(index)
|
|
self.choose_material(index) # fill input fields and set the current material in the cb widget
|
|
|
|
# geometry selection widget
|
|
self.selectionWidget = FemSelectionWidgets.GeometryElementsSelection(obj.References, ['Solid', 'Face', 'Edge'], False) # start with Solid in list!
|
|
|
|
# form made from param and selection widget
|
|
self.form = [self.parameterWidget, self.selectionWidget]
|
|
|
|
# check references, has to be after initialisation of selectionWidget
|
|
self.selectionWidget.has_equal_references_shape_types()
|
|
|
|
# ********* leave task panel *********
|
|
def accept(self):
|
|
# print(self.material)
|
|
if self.selectionWidget.has_equal_references_shape_types():
|
|
self.obj.Material = self.material
|
|
self.obj.References = self.selectionWidget.references
|
|
self.recompute_and_set_back_all()
|
|
return True
|
|
|
|
def reject(self):
|
|
self.recompute_and_set_back_all()
|
|
return True
|
|
|
|
def recompute_and_set_back_all(self):
|
|
doc = FreeCADGui.getDocument(self.obj.Document)
|
|
doc.Document.recompute()
|
|
self.selectionWidget.setback_listobj_visibility()
|
|
if self.selectionWidget.sel_server:
|
|
FreeCADGui.Selection.removeObserver(self.selectionWidget.sel_server)
|
|
doc.resetEdit()
|
|
|
|
# ********* choose material *********
|
|
def get_material_card(self, material):
|
|
for a_mat in self.materials:
|
|
unmatched_items = set(self.materials[a_mat].items()) ^ set(material.items())
|
|
# print(a_mat + ' --> unmatched_items = ' + str(len(unmatched_items)))
|
|
if len(unmatched_items) == 0:
|
|
return a_mat
|
|
return ""
|
|
|
|
def choose_material(self, index):
|
|
if index < 0:
|
|
return
|
|
self.card_path = self.parameterWidget.cb_materials.itemData(index) # returns the whole path !
|
|
# print('choose_material: ' + self.card_path)
|
|
self.material = self.materials[self.card_path]
|
|
self.check_material_keys()
|
|
self.set_mat_params_in_input_fields(self.material)
|
|
self.parameterWidget.cb_materials.setCurrentIndex(index) # set after input fields
|
|
gen_mat_desc = ""
|
|
gen_mat_name = ""
|
|
if 'Description' in self.material:
|
|
gen_mat_desc = self.material['Description']
|
|
if 'Name' in self.material:
|
|
gen_mat_name = self.material['Name']
|
|
self.parameterWidget.l_mat_description.setText(gen_mat_desc)
|
|
self.parameterWidget.l_mat_name.setText(gen_mat_name)
|
|
# print('choose_material: done')
|
|
|
|
def set_transient_material(self):
|
|
self.card_path = '_transient_material'
|
|
self.materials[self.card_path] = self.material # = the current input fields data
|
|
index = self.parameterWidget.cb_materials.findData(self.card_path)
|
|
self.choose_material(index)
|
|
|
|
def add_transient_material(self):
|
|
self.has_transient_mat = True
|
|
self.card_path = '_transient_material'
|
|
self.parameterWidget.cb_materials.addItem(QtGui.QIcon(":/icons/help-browser.svg"), self.card_path, self.card_path)
|
|
self.set_transient_material()
|
|
|
|
# ********* how to edit a material *********
|
|
def edit_material(self):
|
|
# opens the material editor to choose a material or edit material params
|
|
# self.print_material_params()
|
|
import MaterialEditor
|
|
new_material_params = self.material.copy()
|
|
MaterialEditor.editMaterial(new_material_params)
|
|
# if the material editor was canceled a empty params dict will be returned, do not change the self.material
|
|
if new_material_params is True:
|
|
self.material = new_material_params
|
|
self.check_material_keys()
|
|
self.set_mat_params_in_input_fields(self.material)
|
|
if self.has_transient_mat is False:
|
|
self.add_transient_material()
|
|
else:
|
|
self.set_transient_material()
|
|
# self.print_material_params()
|
|
# material editor returns the mat_dict only not a card_path, if a standard FreeCAD mat_card was used
|
|
|
|
def toggleInputFieldsReadOnly(self):
|
|
if self.parameterWidget.chbu_allow_edit.isChecked():
|
|
self.parameterWidget.input_fd_density.setReadOnly(False)
|
|
self.parameterWidget.input_fd_young_modulus.setReadOnly(False)
|
|
self.parameterWidget.spinBox_poisson_ratio.setReadOnly(False)
|
|
self.parameterWidget.input_fd_thermal_conductivity.setReadOnly(False)
|
|
self.parameterWidget.input_fd_expansion_coefficient.setReadOnly(False)
|
|
self.parameterWidget.input_fd_specific_heat.setReadOnly(False)
|
|
self.parameterWidget.input_fd_kinematic_viscosity.setReadOnly(False)
|
|
self.parameterWidget.input_fd_vol_expansion_coefficient.setReadOnly(False)
|
|
else:
|
|
self.parameterWidget.input_fd_density.setReadOnly(True)
|
|
self.parameterWidget.input_fd_young_modulus.setReadOnly(True)
|
|
self.parameterWidget.spinBox_poisson_ratio.setReadOnly(True)
|
|
self.parameterWidget.input_fd_thermal_conductivity.setReadOnly(True)
|
|
self.parameterWidget.input_fd_expansion_coefficient.setReadOnly(True)
|
|
self.parameterWidget.input_fd_specific_heat.setReadOnly(True)
|
|
self.parameterWidget.input_fd_kinematic_viscosity.setReadOnly(True)
|
|
self.parameterWidget.input_fd_vol_expansion_coefficient.setReadOnly(True)
|
|
|
|
# ********* material parameter input fields *********
|
|
def print_material_params(self, material=None):
|
|
if not material:
|
|
material = self.material
|
|
for p in material:
|
|
print(' ' + p + ' --> ' + material[p])
|
|
print('\n')
|
|
|
|
def check_material_keys(self):
|
|
if not self.material:
|
|
print('For some reason all material data is empty!')
|
|
self.material['Name'] = 'Empty'
|
|
if 'Density' in self.material:
|
|
if 'Density' not in str(Units.Unit(self.material['Density'])):
|
|
print('Density in material data seems to have no unit or a wrong unit (reset the value): ' + self.material['Name'])
|
|
self.material['Density'] = '0 kg/m^3'
|
|
else:
|
|
print('Density not found in material data of: ' + self.material['Name'])
|
|
self.material['Density'] = '0 kg/m^3'
|
|
if self.obj.Category == 'Solid':
|
|
# mechanical properties
|
|
if 'YoungsModulus' in self.material:
|
|
if 'Pressure' not in str(Units.Unit(self.material['YoungsModulus'])): # unit type of YoungsModulus is Pressure
|
|
print('YoungsModulus in material data seems to have no unit or a wrong unit (reset the value): ' + self.material['Name'])
|
|
self.material['YoungsModulus'] = '0 MPa'
|
|
else:
|
|
print('YoungsModulus not found in material data of: ' + self.material['Name'])
|
|
self.material['YoungsModulus'] = '0 MPa'
|
|
if 'PoissonRatio' not in self.material: # PoissonRatio does not have a unit, we're not going to check for a unit
|
|
print('PoissonRatio not found in material data of: ' + self.material['Name'])
|
|
self.material['PoissonRatio'] = '0'
|
|
if self.obj.Category == 'Fluid':
|
|
# Fluidic properties
|
|
if 'KinematicViscosity' in self.material:
|
|
if 'KinematicViscosity' not in str(Units.Unit(self.material['KinematicViscosity'])):
|
|
print('KinematicViscosity in material data seems to have no unit or a wrong unit (reset the value): ' + self.material['Name'])
|
|
self.material['KinematicViscosity'] = '0 m^2/s'
|
|
else:
|
|
print('KinematicViscosity not found in material data of: ' + self.material['Name'])
|
|
self.material['KinematicViscosity'] = '0 m^2/s'
|
|
if 'VolumetricThermalExpansionCoefficient' in self.material:
|
|
# unit type of VolumetricThermalExpansionCoefficient is ThermalExpansionCoefficient
|
|
if 'VolumetricThermalExpansionCoefficient' not in str(Units.Unit(self.material['VolumetricThermalExpansionCoefficient'])):
|
|
print('VolumetricThermalExpansionCoefficient in material data seems to have no unit or a wrong unit (reset the value): ' + self.material['Name'])
|
|
self.material['VolumetricThermalExpansionCoefficient'] = '0 m/m/K'
|
|
else:
|
|
print('VolumetricThermalExpansionCoefficient not found in material data of: ' + self.material['Name'])
|
|
self.material['VolumetricThermalExpansionCoefficient'] = '0 m/m/K'
|
|
# Thermal properties
|
|
if 'ThermalConductivity' in self.material:
|
|
if 'ThermalConductivity' not in str(Units.Unit(self.material['ThermalConductivity'])):
|
|
print('ThermalConductivity in material data seems to have no unit or a wrong unit (reset the value): ' + self.material['Name'])
|
|
self.material['ThermalConductivity'] = '0 W/m/K'
|
|
else:
|
|
print('ThermalConductivity not found in material data of: ' + self.material['Name'])
|
|
self.material['ThermalConductivity'] = '0 W/m/K'
|
|
if 'ThermalExpansionCoefficient' in self.material:
|
|
if 'ThermalExpansionCoefficient' not in str(Units.Unit(self.material['ThermalExpansionCoefficient'])):
|
|
print('ThermalExpansionCoefficient in material data seems to have no unit or a wrong unit (reset the value): ' + self.material['Name'])
|
|
self.material['ThermalExpansionCoefficient'] = '0 um/m/K'
|
|
else:
|
|
print('ThermalExpansionCoefficient not found in material data of: ' + self.material['Name'])
|
|
self.material['ThermalExpansionCoefficient'] = '0 um/m/K'
|
|
if 'SpecificHeat' in self.material:
|
|
if 'SpecificHeat' not in str(Units.Unit(self.material['SpecificHeat'])):
|
|
print('SpecificHeat in material data seems to have no unit or a wrong unit (reset the value): ' + self.material['Name'])
|
|
self.material['SpecificHeat'] = '0 J/kg/K'
|
|
else:
|
|
print('SpecificHeat not found in material data of: ' + self.material['Name'])
|
|
self.material['SpecificHeat'] = '0 J/kg/K'
|
|
|
|
# mechanical input fields
|
|
def ym_changed(self, value):
|
|
# FreeCADs standard unit for stress is kPa
|
|
old_ym = Units.Quantity(self.material['YoungsModulus']).getValueAs("kPa")
|
|
variation = 0.001
|
|
if value:
|
|
if not (1 - variation < float(old_ym) / value < 1 + variation):
|
|
# YoungsModulus has changed
|
|
material = self.material
|
|
material['YoungsModulus'] = unicode(value) + " kPa"
|
|
self.material = material
|
|
if self.has_transient_mat is False:
|
|
self.add_transient_material()
|
|
else:
|
|
self.set_transient_material()
|
|
|
|
def density_changed(self, value):
|
|
# FreeCADs standard unit for density is kg/mm^3
|
|
old_density = Units.Quantity(self.material['Density']).getValueAs("kg/m^3")
|
|
variation = 0.001
|
|
if value:
|
|
if not (1 - variation < float(old_density) / value < 1 + variation):
|
|
# density has changed
|
|
material = self.material
|
|
value_in_kg_per_m3 = value * 1e9
|
|
material['Density'] = unicode(value_in_kg_per_m3) + " kg/m^3" # SvdW:Keep density in SI units for easier readability
|
|
self.material = material
|
|
if self.has_transient_mat is False:
|
|
self.add_transient_material()
|
|
else:
|
|
self.set_transient_material()
|
|
|
|
def pr_changed(self, value):
|
|
old_pr = Units.Quantity(self.material['PoissonRatio'])
|
|
variation = 0.001
|
|
if value:
|
|
if not (1 - variation < float(old_pr) / value < 1 + variation):
|
|
# PoissonRatio has changed
|
|
material = self.material
|
|
material['PoissonRatio'] = unicode(value)
|
|
self.material = material
|
|
if self.has_transient_mat is False:
|
|
self.add_transient_material()
|
|
else:
|
|
self.set_transient_material()
|
|
elif value == 0:
|
|
# PoissonRatio was set to 0.0 what is possible
|
|
material = self.material
|
|
material['PoissonRatio'] = unicode(value)
|
|
self.material = material
|
|
if self.has_transient_mat is False:
|
|
self.add_transient_material()
|
|
else:
|
|
self.set_transient_material()
|
|
|
|
# thermal input fields
|
|
def tc_changed(self, value):
|
|
old_tc = Units.Quantity(self.material['ThermalConductivity']).getValueAs("W/m/K")
|
|
variation = 0.001
|
|
if value:
|
|
if not (1 - variation < float(old_tc) / value < 1 + variation):
|
|
# ThermalConductivity has changed
|
|
material = self.material
|
|
value_in_W_per_mK = value * 1e-3 # To compensate for use of SI units
|
|
material['ThermalConductivity'] = unicode(value_in_W_per_mK) + " W/m/K"
|
|
self.material = material
|
|
if self.has_transient_mat is False:
|
|
self.add_transient_material()
|
|
else:
|
|
self.set_transient_material()
|
|
|
|
def tec_changed(self, value):
|
|
old_tec = Units.Quantity(self.material['ThermalExpansionCoefficient']).getValueAs("um/m/K")
|
|
variation = 0.001
|
|
if value:
|
|
if not (1 - variation < float(old_tec) / value < 1 + variation):
|
|
# ThermalExpansionCoefficient has changed
|
|
material = self.material
|
|
value_in_um_per_mK = value * 1e6 # To compensate for use of SI units
|
|
material['ThermalExpansionCoefficient'] = unicode(value_in_um_per_mK) + " um/m/K"
|
|
self.material = material
|
|
if self.has_transient_mat is False:
|
|
self.add_transient_material()
|
|
else:
|
|
self.set_transient_material()
|
|
|
|
def sh_changed(self, value):
|
|
old_sh = Units.Quantity(self.material['SpecificHeat']).getValueAs("J/kg/K")
|
|
variation = 0.001
|
|
if value:
|
|
if not (1 - variation < float(old_sh) / value < 1 + variation):
|
|
# SpecificHeat has changed
|
|
material = self.material
|
|
value_in_J_per_kgK = value * 1e-6 # To compensate for use of SI units
|
|
material['SpecificHeat'] = unicode(value_in_J_per_kgK) + " J/kg/K"
|
|
self.material = material
|
|
if self.has_transient_mat is False:
|
|
self.add_transient_material()
|
|
else:
|
|
self.set_transient_material()
|
|
|
|
# fluidic input fields
|
|
def vtec_changed(self, value):
|
|
old_vtec = Units.Quantity(self.material['VolumetricThermalExpansionCoefficient']).getValueAs("m/m/K")
|
|
variation = 0.001
|
|
if value:
|
|
if not (1 - variation < float(old_vtec) / value < 1 + variation):
|
|
# VolumetricThermalExpansionCoefficient has changed
|
|
material = self.material
|
|
value_in_one_per_K = value
|
|
material['VolumetricThermalExpansionCoefficient'] = unicode(value_in_one_per_K) + " m/m/K"
|
|
self.material = material
|
|
if self.has_transient_mat is False:
|
|
self.add_transient_material()
|
|
else:
|
|
self.set_transient_material()
|
|
|
|
def kinematic_viscosity_changed(self, value):
|
|
old_nu = Units.Quantity(self.material['KinematicViscosity']).getValueAs("m^2/s")
|
|
variation = 0.000001
|
|
if value:
|
|
if not (1 - variation < float(old_nu) / value < 1 + variation):
|
|
# KinematicViscosity has changed
|
|
material = self.material
|
|
value_in_m2_per_second = value
|
|
material['KinematicViscosity'] = unicode(value_in_m2_per_second) + " m^2/s"
|
|
self.material = material
|
|
if self.has_transient_mat is False:
|
|
self.add_transient_material()
|
|
else:
|
|
self.set_transient_material()
|
|
|
|
def set_mat_params_in_input_fields(self, matmap):
|
|
if 'YoungsModulus' in matmap:
|
|
ym_new_unit = "MPa"
|
|
ym = FreeCAD.Units.Quantity(matmap['YoungsModulus'])
|
|
ym_with_new_unit = ym.getValueAs(ym_new_unit)
|
|
q = FreeCAD.Units.Quantity("{} {}".format(ym_with_new_unit, ym_new_unit))
|
|
self.parameterWidget.input_fd_young_modulus.setText(q.UserString)
|
|
if 'PoissonRatio' in matmap:
|
|
self.parameterWidget.spinBox_poisson_ratio.setValue(float(matmap['PoissonRatio']))
|
|
# Fluidic properties
|
|
if 'KinematicViscosity' in matmap:
|
|
nu_new_unit = "m^2/s"
|
|
nu = FreeCAD.Units.Quantity(matmap['KinematicViscosity'])
|
|
nu_with_new_unit = nu.getValueAs(nu_new_unit)
|
|
q = FreeCAD.Units.Quantity("{} {}".format(nu_with_new_unit, nu_new_unit))
|
|
self.parameterWidget.input_fd_kinematic_viscosity.setText(q.UserString)
|
|
# For isotropic materials the volumetric thermal expansion coefficient is three times the linear coefficient:
|
|
if 'VolumetricThermalExpansionCoefficient' in matmap: # linear, only for solid
|
|
vtec_new_unit = "m/m/K"
|
|
vtec = FreeCAD.Units.Quantity(matmap['VolumetricThermalExpansionCoefficient'])
|
|
vtec_with_new_unit = vtec.getValueAs(vtec_new_unit)
|
|
q = FreeCAD.Units.Quantity("{} {}".format(vtec_with_new_unit, vtec_new_unit))
|
|
self.parameterWidget.input_fd_vol_expansion_coefficient.setText(q.UserString)
|
|
if 'Density' in matmap:
|
|
density_new_unit = "kg/m^3"
|
|
density = FreeCAD.Units.Quantity(matmap['Density'])
|
|
density_with_new_unit = density.getValueAs(density_new_unit)
|
|
# self.parameterWidget.input_fd_density.setText("{} {}".format(density_with_new_unit, density_new_unit))
|
|
q = FreeCAD.Units.Quantity("{} {}".format(density_with_new_unit, density_new_unit))
|
|
self.parameterWidget.input_fd_density.setText(q.UserString)
|
|
# thermal properties
|
|
if 'ThermalConductivity' in matmap:
|
|
tc_new_unit = "W/m/K"
|
|
tc = FreeCAD.Units.Quantity(matmap['ThermalConductivity'])
|
|
tc_with_new_unit = tc.getValueAs(tc_new_unit)
|
|
q = FreeCAD.Units.Quantity("{} {}".format(tc_with_new_unit, tc_new_unit))
|
|
self.parameterWidget.input_fd_thermal_conductivity.setText(q.UserString)
|
|
if 'ThermalExpansionCoefficient' in matmap: # linear, only for solid
|
|
tec_new_unit = "um/m/K"
|
|
tec = FreeCAD.Units.Quantity(matmap['ThermalExpansionCoefficient'])
|
|
tec_with_new_unit = tec.getValueAs(tec_new_unit)
|
|
q = FreeCAD.Units.Quantity("{} {}".format(tec_with_new_unit, tec_new_unit))
|
|
self.parameterWidget.input_fd_expansion_coefficient.setText(q.UserString)
|
|
if 'SpecificHeat' in matmap:
|
|
sh_new_unit = "J/kg/K"
|
|
sh = FreeCAD.Units.Quantity(matmap['SpecificHeat'])
|
|
sh_with_new_unit = sh.getValueAs(sh_new_unit)
|
|
q = FreeCAD.Units.Quantity("{} {}".format(sh_with_new_unit, sh_new_unit))
|
|
self.parameterWidget.input_fd_specific_heat.setText(q.UserString)
|
|
|
|
# ********* material import and export *********
|
|
def print_materialsdict(self):
|
|
print('\n\n')
|
|
for mat_card in self.materials:
|
|
print(mat_card)
|
|
self.print_material_params(self.materials[mat_card])
|
|
print('\n\n')
|
|
|
|
def import_materials(self):
|
|
self.pathList = []
|
|
self.parameterWidget.cb_materials.clear()
|
|
|
|
self.fem_prefs = FreeCAD.ParamGet("User parameter:BaseApp/Preferences/Mod/Material/Resources")
|
|
if self.obj.Category == 'Fluid':
|
|
self.import_fluid_materials()
|
|
else:
|
|
self.import_solid_materials()
|
|
# self.print_materialsdict()
|
|
|
|
def import_solid_materials(self):
|
|
use_built_in_materials = self.fem_prefs.GetBool("UseBuiltInMaterials", True)
|
|
if use_built_in_materials:
|
|
system_mat_dir = FreeCAD.getResourceDir() + "/Mod/Material/StandardMaterial"
|
|
self.add_cards_from_a_dir(system_mat_dir, ":/icons/freecad.svg")
|
|
|
|
use_mat_from_config_dir = self.fem_prefs.GetBool("UseMaterialsFromConfigDir", True)
|
|
if use_mat_from_config_dir:
|
|
user_mat_dirname = FreeCAD.getUserAppDataDir() + "Material"
|
|
self.add_cards_from_a_dir(user_mat_dirname, ":/icons/preferences-general.svg")
|
|
|
|
use_mat_from_custom_dir = self.fem_prefs.GetBool("UseMaterialsFromCustomDir", True)
|
|
if use_mat_from_custom_dir:
|
|
custom_mat_dir = self.fem_prefs.GetString("CustomMaterialsDir", "")
|
|
self.add_cards_from_a_dir(custom_mat_dir, ":/icons/user.svg")
|
|
|
|
def import_fluid_materials(self):
|
|
# use_built_in_materials = self.fem_prefs.GetBool("UseBuiltInMaterials", True)
|
|
# if use_built_in_materials:
|
|
system_mat_dir = FreeCAD.getResourceDir() + "/Mod/Material/FluidMaterial"
|
|
self.add_cards_from_a_dir(system_mat_dir, ":/icons/freecad.svg")
|
|
|
|
use_mat_from_config_dir = self.fem_prefs.GetBool("UseMaterialsFromConfigDir", True)
|
|
if use_mat_from_config_dir:
|
|
user_mat_dirname = FreeCAD.getUserAppDataDir() + "FluidMaterial"
|
|
self.add_cards_from_a_dir(user_mat_dirname, ":/icons/preferences-general.svg")
|
|
|
|
use_mat_from_custom_dir = self.fem_prefs.GetBool("UseMaterialsFromCustomDir", True)
|
|
if use_mat_from_custom_dir:
|
|
custom_mat_dir = self.fem_prefs.GetString("CustomMaterialsDir", "")
|
|
self.add_cards_from_a_dir(custom_mat_dir, ":/icons/user.svg")
|
|
|
|
def add_cards_from_a_dir(self, mat_dir, icon):
|
|
import glob
|
|
import os
|
|
import Material
|
|
mat_file_extension = ".FCMat"
|
|
ext_len = len(mat_file_extension)
|
|
dir_path_list = glob.glob(mat_dir + '/*' + mat_file_extension)
|
|
self.pathList = self.pathList + dir_path_list
|
|
card_name_list = []
|
|
for a_path in dir_path_list:
|
|
card_name = os.path.basename(a_path[:-ext_len])
|
|
self.materials[a_path] = Material.importFCMat(a_path)
|
|
card_name_list.append([card_name, a_path])
|
|
card_name_list.sort()
|
|
for mat in card_name_list:
|
|
self.parameterWidget.cb_materials.addItem(QtGui.QIcon(icon), mat[0], mat[1])
|