File size: 34,748 Bytes
985c397 | 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 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 | # SPDX-License-Identifier: LGPL-2.1-or-later
# ***************************************************************************
# * Copyright (c) 2019 Bernd Hahnebach <bernd@bimstatik.org> *
# * *
# * 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__ = "material cards utilities"
__author__ = "Bernd Hahnebach"
__url__ = "https://www.freecad.org"
import os
from os.path import join
from pathlib import Path
import FreeCAD
import Materials
unicode = str
# TODO:
# implement method check_material_keys from FEM material task panel for material editor
# may be move out of the FEM material task panel to here
# make the method more generic to be compatible with all known params
# the material template knows the units
# ***** card handling data models ****************************************************************
'''
data model:
materials = { card_path: mat_dict, ... }
cards = { card_path: card_name, ... }
icons = { card_path: icon_path, ... }
- duplicates are allowed
- the whole card_path is saved into the combo box widget, this makes card unique
- sorting happens on adding to the combo box widgets
a data model which uses a class and attributes as well as methods to access the attributes
would makes sense, like some material library class
this has been done already by eivind see
https://forum.freecad.org/viewtopic.php?f=38&t=16714
'''
def get_material_preferred_directory(category=None):
"""
Return the preferred material directory. In priority order they are:
1. user specified
2. user modules folder
3. system folder
"""
mat_prefs = FreeCAD.ParamGet("User parameter:BaseApp/Preferences/Mod/Material/Resources")
use_built_in_materials = mat_prefs.GetBool("UseBuiltInMaterials", True)
use_mat_from_config_dir = mat_prefs.GetBool("UseMaterialsFromConfigDir", True)
use_mat_from_custom_dir = mat_prefs.GetBool("UseMaterialsFromCustomDir", True)
preferred = None
if use_built_in_materials:
if category == 'Fluid':
preferred = join(
FreeCAD.getResourceDir(), "Mod", "Material", "Resources", "Materials", "FluidMaterial"
)
elif category == 'Solid':
preferred = join(
FreeCAD.getResourceDir(), "Mod", "Material", "Resources", "Materials", "StandardMaterial"
)
else:
preferred = join(
FreeCAD.getResourceDir(), "Mod", "Material"
)
if use_mat_from_config_dir:
user = join(
FreeCAD.ConfigGet("UserAppData"), "Material"
)
if os.path.isdir(user):
preferred = user
if use_mat_from_custom_dir:
custom = mat_prefs.GetString("CustomMaterialsDir", "")
if len(custom.strip()) > 0:
preferred = custom
return preferred
def get_material_preferred_save_directory():
"""
Return the preferred directory for saving materials. In priority order they are:
1. user specified
2. user modules folder
"""
mat_prefs = FreeCAD.ParamGet("User parameter:BaseApp/Preferences/Mod/Material/Resources")
use_mat_from_config_dir = mat_prefs.GetBool("UseMaterialsFromConfigDir", True)
use_mat_from_custom_dir = mat_prefs.GetBool("UseMaterialsFromCustomDir", True)
if use_mat_from_custom_dir:
custom = mat_prefs.GetString("CustomMaterialsDir", "")
if len(custom.strip()) > 0:
# Create the directory if it doesn't exist
try:
if not os.path.isdir(custom):
os.makedirs(custom)
return custom
except Exception as ex:
print(ex)
pass
if use_mat_from_config_dir:
user = join(
FreeCAD.ConfigGet("UserAppData"), "Material"
)
try:
if not os.path.isdir(user):
os.makedirs(user)
return user
except Exception as ex:
print(ex)
pass
return ""
# ***** get resources for cards ******************************************************************
def get_material_resources(category='Solid'):
resources = {} # { resource_path: icon_path, ... }
mat_prefs = FreeCAD.ParamGet("User parameter:BaseApp/Preferences/Mod/Material/Resources")
use_built_in_materials = mat_prefs.GetBool("UseBuiltInMaterials", True)
use_mat_from_modules = mat_prefs.GetBool("UseMaterialsFromWorkbenches", True)
use_mat_from_config_dir = mat_prefs.GetBool("UseMaterialsFromConfigDir", True)
use_mat_from_custom_dir = mat_prefs.GetBool("UseMaterialsFromCustomDir", True)
if use_built_in_materials:
if category == 'Fluid':
builtin_mat_dir = join(
FreeCAD.getResourceDir(), "Mod", "Material", "Resources", "Materials", "FluidMaterial"
)
else:
builtin_mat_dir = join(
FreeCAD.getResourceDir(), "Mod", "Material", "Resources", "Materials", "StandardMaterial"
)
resources[builtin_mat_dir] = ":/icons/freecad.svg"
if use_mat_from_modules:
module_prefs = FreeCAD.ParamGet("User parameter:BaseApp/Preferences/Mod/Material/Resources/Modules")
module_groups = module_prefs.GetGroups()
for group in module_groups:
module = module_prefs.GetGroup(group)
module_mat_dir = module.GetString("ModuleDir", "")
module_icon_dir = module.GetString("ModuleIcon", "")
if len(module_mat_dir) > 0:
resources[module_mat_dir] = module_icon_dir
if use_mat_from_config_dir:
config_mat_dir = join(
FreeCAD.ConfigGet("UserAppData"), "Material"
)
if os.path.exists(config_mat_dir):
resources[config_mat_dir] = ":/icons/preferences-general.svg"
if use_mat_from_custom_dir:
custom_mat_dir = mat_prefs.GetString("CustomMaterialsDir", "")
if os.path.exists(custom_mat_dir):
resources[custom_mat_dir] = ":/icons/user.svg"
# fail silently
# else:
# FreeCAD.Console.PrintError(
# 'Custom material directory set by user: {} does not exist.\n'
# .format(custom_mat_dir)
# )
return resources
def get_material_libraries():
resources = {} # { resource_path: icon_path, ... }
mat_prefs = FreeCAD.ParamGet("User parameter:BaseApp/Preferences/Mod/Material/Resources")
use_built_in_materials = mat_prefs.GetBool("UseBuiltInMaterials", True)
use_mat_from_modules = mat_prefs.GetBool("UseMaterialsFromWorkbenches", True)
use_mat_from_config_dir = mat_prefs.GetBool("UseMaterialsFromConfigDir", True)
use_mat_from_custom_dir = mat_prefs.GetBool("UseMaterialsFromCustomDir", True)
if use_built_in_materials:
builtin_mat_dir = join(
FreeCAD.getResourceDir(), "Mod", "Material", "Resources", "Materials"
)
resources["System"] = (builtin_mat_dir, ":/icons/freecad.svg")
if use_mat_from_modules:
module_prefs = FreeCAD.ParamGet("User parameter:BaseApp/Preferences/Mod/Material/Resources/Modules")
module_groups = module_prefs.GetGroups()
for group in module_groups:
print("\tGroup - {0}".format(group))
module = module_prefs.GetGroup(group)
module_mat_dir = module.GetString("ModuleDir", "")
module_icon = module.GetString("ModuleIcon", "")
if len(module_mat_dir) > 0:
resources[group] = (module_mat_dir, module_icon)
if use_mat_from_config_dir:
config_mat_dir = join(
FreeCAD.ConfigGet("UserAppData"), "Material"
)
if os.path.exists(config_mat_dir):
resources["User"] = (config_mat_dir, ":/icons/preferences-general.svg")
if use_mat_from_custom_dir:
custom_mat_dir = mat_prefs.GetString("CustomMaterialsDir", "")
if os.path.exists(custom_mat_dir):
resources["Custom"] = (custom_mat_dir, ":/icons/user.svg")
return resources
def list_cards(mat_dir, icon):
import glob
a_path = mat_dir + '/**/*.FCMat'
print("path = '{0}'".format(a_path))
dir_path_list = glob.glob(a_path, recursive=True)
# Need to handle duplicates
cards = []
for a_path in dir_path_list:
p = Path(a_path)
relative = p.relative_to(mat_dir)
cards.append(relative)
return cards
def output_resources(resources):
FreeCAD.Console.PrintMessage('Directories in which we will look for material cards:\n')
for path in resources.keys():
FreeCAD.Console.PrintMessage(' {}\n'.format(path))
# ***** card handling ****************************************************************************
# used in material editor and FEM material task panels
def import_materials(category='Solid', template=False):
materialManager = Materials.MaterialManager()
mats = materialManager.Materials
materials = {}
cards = {}
icons = {}
for matUUID in mats:
mat = materialManager.getMaterial(matUUID)
physicalModels = mat.PhysicalModels
fluid = ('1ae66d8c-1ba1-4211-ad12-b9917573b202' in physicalModels)
if (category == 'Solid' and not fluid) or (category != 'Solid' and fluid):
path = mat.LibraryRoot + "/" + mat.Directory
materials[path] = mat.Properties
cards[path] = mat.Name
icons[path] = mat.LibraryIcon
return (materials, cards, icons)
def add_cards_from_a_dir(materials, cards, icons, mat_dir, icon, template=False):
# fill materials and icons
import glob
from importFCMat import read
dir_path_list = glob.glob(mat_dir + '/*' + ".FCMat")
mat_prefs = FreeCAD.ParamGet("User parameter:BaseApp/Preferences/Mod/Material/Cards")
delete_duplicates = mat_prefs.GetBool("DeleteDuplicates", True)
# duplicates are indicated on equality of mat dict
# TODO if the unit is different two cards would be different too
for a_path in dir_path_list:
try:
mat_dict = read(a_path)
except Exception:
FreeCAD.Console.PrintError(
'Error on reading card data. The card data will be empty for card:\n{}\n'
.format(a_path)
)
mat_dict = {}
card_name = os.path.splitext(os.path.basename(a_path))[0]
if (card_name == 'TEMPLATE') and (template is False):
continue
if delete_duplicates is False:
materials[a_path] = mat_dict
cards[a_path] = card_name
icons[a_path] = icon
else:
if mat_dict not in materials.values():
materials[a_path] = mat_dict
cards[a_path] = card_name
icons[a_path] = icon
return (materials, cards, icons)
def output_trio(trio):
materials, cards, icons = trio
FreeCAD.Console.PrintMessage('\n\n')
for mat_card in materials:
FreeCAD.Console.PrintMessage(
'{} --> {} -->{}\n'
.format(cards[mat_card], mat_card, icons[mat_card])
)
FreeCAD.Console.PrintMessage('\n\n')
def output_cards(cards):
FreeCAD.Console.PrintMessage('\n\n')
for mat_card in cards:
FreeCAD.Console.PrintMessage('{} --> {}\n'.format(mat_card, cards[mat_card]))
FreeCAD.Console.PrintMessage('\n\n')
def output_icons(icons):
FreeCAD.Console.PrintMessage('\n\n')
for mat_card in icons:
FreeCAD.Console.PrintMessage('{} --> {}\n'.format(mat_card, icons[mat_card]))
FreeCAD.Console.PrintMessage('\n\n')
def output_materials(materials):
FreeCAD.Console.PrintMessage('\n\n')
for mat_card in materials:
FreeCAD.Console.PrintMessage('{}\n'.format(mat_card))
output_material_param(materials[mat_card])
FreeCAD.Console.PrintMessage('\n\n')
def output_material_param(mat_dict):
# thus we check for None
if not mat_dict:
FreeCAD.Console.PrintMessage(' empty matdict\n')
else:
for p in mat_dict:
FreeCAD.Console.PrintMessage(' {} --> {}\n'.format(p, mat_dict[p]))
FreeCAD.Console.PrintMessage('\n')
# ***** material card template *******************************************************************
def get_material_template(withSpaces=False):
# material properties
# see the following resources in the FreeCAD wiki for more
# information about the material specific properties:
# https://www.freecad.org/wiki/Material_data_model
# https://www.freecad.org/wiki/Material
print("Call to get_material_template() successful")
import yaml
template_data = yaml.safe_load(
open(join(FreeCAD.ConfigGet('AppHomePath'), 'Mod/Material/Templatematerial.yml'))
)
if withSpaces:
# on attributes, add a space before a capital letter
# will be used for better display in the ui
import re
new_template = []
for group in template_data:
new_group = {}
gg = list(group)[0] # group dict has only one key
# iterating over a dict and changing it is not allowed
# thus it is iterated over a list of the keys
new_group[gg] = {}
for proper in list(group[gg]):
new_proper = re.sub(r"(\w)([A-Z]+)", r"\1 \2", proper)
# strip underscores of vectorial properties
new_proper = new_proper.replace("_", " ")
new_group[gg][new_proper] = group[gg][proper]
new_template.append(new_group)
template_data = new_template
return template_data
def create_mat_tools_header():
headers = join(get_source_path(), 'src/Mod/Material/StandardMaterial/Tools/headers')
# print(headers)
if not os.path.isfile(headers):
FreeCAD.Console.PrintError(
'file not found: {}'.format(headers)
)
return
template_data = get_material_template()
f = open(headers, "w")
for group in template_data:
gg = list(group)[0] # group dict has only one key
# do not write group UserDefined
if gg != 'UserDefined':
for prop_name in group[gg]:
if prop_name != 'None':
f.write(prop_name + '\n')
f.close
def create_mat_template_card(write_group_section=True):
template_card = join(get_source_path(), 'src/Mod/Material/StandardMaterial/TEMPLATE.FCMat')
if not os.path.isfile(template_card):
FreeCAD.Console.PrintError(
'file not found: {}'.format(template_card)
)
return
rev = "{}.{}.{}".format(
FreeCAD.ConfigGet("BuildVersionMajor"),
FreeCAD.ConfigGet("BuildVersionMinor"),
FreeCAD.ConfigGet("BuildRevision")
)
template_data = get_material_template()
f = open(template_card, "w")
f.write('; TEMPLATE\n')
f.write('; (c) 2013-2015 Juergen Riegel (CC-BY 3.0)\n')
f.write('; information about the content of such cards can be found on the wiki:\n')
f.write('; https://www.freecad.org/wiki/Material\n')
f.write(': this template card was created by FreeCAD ' + rev + '\n\n')
f.write('; localized Name, Description and KindOfMaterial uses 2 letter codes\n')
f.write('; defined in ISO-639-1, see https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes\n')
f.write('; find unit information in src/App/FreeCADInit.py')
# write sections
# write standard FCMat section if write group section parameter is set to False
if write_group_section is False:
f.write("\n[FCMat]\n")
for group in template_data:
gg = list(group)[0] # group dict has only one key
# do not write groups Meta and UserDefined
if (gg != 'Meta') and (gg != 'UserDefined'):
# only write group section if write group section parameter is set to True
if write_group_section is True:
f.write("\n\n[" + gg + "]")
for prop_name in group[gg]:
f.write('\n')
description = group[gg][prop_name]['Description']
if not description.strip():
f.write('; Description to be updated\n')
else:
f.write('; ' + description + '\n')
url = group[gg][prop_name]['URL']
if url.strip():
f.write('; ' + url + '\n')
f.write(prop_name + ' =\n')
f.close
# card tools will not be copied into build ... thus they are not there ...
# thus the source dir is needed, this might not work on windows
def get_source_path():
# in the file 'Makefile' in build directory the cmake variable CMAKE_SOURCE_DIR has the dir
source_dir = ''
make_file = join(FreeCAD.ConfigGet('AppHomePath'), 'Makefile')
f = open(make_file, 'r')
lines = f.readlines()
f.close()
for line in lines:
if line.startswith('CMAKE_SOURCE_DIR'):
source_dir = line.lstrip('CMAKE_SOURCE_DIR = ')
source_dir = source_dir.rstrip() # get rid on new line and white spaces etc.
break
# print(source_dir)
return source_dir
def get_known_material_quantity_parameter():
# get the material quantity parameter from material card template
template_data = get_material_template()
known_quantities = []
for group in template_data:
gname = list(group)[0] # group dict has only one key
for prop_name in group[gname]:
prop_type = group[gname][prop_name]['Type']
if prop_type == 'Quantity':
# print('{} --> {}'.format(prop_name, prop_type))
known_quantities.append(prop_name)
return known_quantities
# ***** debug known and unknown material parameter *********************************************
def get_and_output_all_carddata(cards):
print('\n\n\nSTART--get_and_output_all_carddata\n--------------------')
# get all registered material property keys
registed_cardkeys = []
template_data = get_material_template()
# print(template_data)
for group in template_data:
gg = list(group)[0] # group dict has only one key
for key in group[gg]:
registed_cardkeys.append(key)
registed_cardkeys = sorted(registed_cardkeys)
# print(registed_cardkeys)
# get all data from all known cards
all_cards_and_data = {} # {cardfilename: ['path', materialdict]}
for card in cards:
from importFCMat import read
d = read(cards[card])
all_cards_and_data[card] = [cards[card], d]
'''
for card in all_cards_and_data:
print(card)
print(all_cards_and_data[card][0])
print(all_cards_and_data[card][1])
print('\n')
'''
# find not registered and registered keys in the used data
used_and_registered_cardkeys = []
used_and_not_registered_cardkeys = []
registered_and_not_used_cardkeys = []
for card in all_cards_and_data:
for k in all_cards_and_data[card][1]:
if k in registed_cardkeys:
used_and_registered_cardkeys.append(k)
else:
used_and_not_registered_cardkeys.append(k)
for k in registed_cardkeys:
if (k not in used_and_registered_cardkeys) and (k not in used_and_not_registered_cardkeys):
registered_and_not_used_cardkeys.append(k)
used_and_registered_cardkeys = sorted(list(set(used_and_registered_cardkeys)))
used_and_not_registered_cardkeys = sorted(list(set(used_and_not_registered_cardkeys)))
registered_and_not_used_cardkeys = sorted(list(set(registered_and_not_used_cardkeys)))
FreeCAD.Console.PrintMessage(
'\nused_and_registered_cardkeys:\n{}\n'
.format(used_and_registered_cardkeys)
)
FreeCAD.Console.PrintMessage(
'\nused_and_not_registered_cardkeys:\n{}\n'
.format(used_and_not_registered_cardkeys)
)
FreeCAD.Console.PrintMessage(
'\nregistered_and_not_used_cardkeys:\n{}\n'
.format(registered_and_not_used_cardkeys)
)
# still there might be lots of properties in the template
# which are not used in other materials
# but the tmplate is handled here like a material
print('--------------------\nget_and_output_all_carddata--END\n\n\n')
# ***** process multiple material cards **********************************************************
def read_cards_from_path(cards_path):
from os import listdir
from os.path import isfile, join, basename, splitext
from importFCMat import read
only_files = [f for f in listdir(cards_path) if isfile(join(cards_path, f))]
# to make sure all file lower and upper and mixed endings are found, use upper and .FCMAT
mat_files = [f for f in only_files if basename(splitext(f)[1]).upper() == '.FCMAT']
# print(mat_files)
mat_cards = []
for f in sorted(mat_files):
mat_cards.append(read(join(cards_path, f)))
return mat_cards
def write_cards_to_path(cards_path, cards_data, write_group_section=True, write_template=False):
from importFCMat import write
from os.path import join
for card_data in cards_data:
if (card_data['CardName'] == 'TEMPLATE') and (write_template is False):
continue
else:
card_path = join(cards_path, (card_data['CardName'] + '.FCMat'))
# print(card_path)
if write_group_section is True:
write(card_path, card_data, True)
else:
write(card_path, card_data, False)
# ***** material parameter units *********************************************
def check_parm_unit(param):
# check if this parameter is known to FreeCAD unit system
# for properties with underscores (vectorial values), we must
# strip the part after the first underscore to obtain the bound unit
from FreeCAD import Units
if param.find("_") != -1:
param = param.split("_")[0]
if hasattr(Units, param):
return True
else:
return False
def check_value_unit(param, value):
# check unit
from FreeCAD import Units
# FreeCAD.Console.PrintMessage('{} --> {}\n'.format(param, value))
if hasattr(Units, param):
# get unit and other information known by FreeCAD for this parameter
unit = getattr(Units, param)
quantity = Units.Quantity(1, unit)
user_preferred_unit = quantity.getUserPreferred()[2]
# test unit from mat dict value
some_text = "Parameter: {} --> value: {} -->".format(param, value)
try:
param_value = Units.Quantity(value)
try:
user_unit = param_value.getValueAs(user_preferred_unit)
if user_unit:
return True
elif user_unit == 0:
FreeCAD.Console.PrintMessage(
'{} Value {} = 0 for {}\n'
.format(some_text, value, param)
)
return True
else:
FreeCAD.Console.PrintError(
'{} Unknown problem in unit conversion.\n'
.format(some_text)
)
except ValueError:
unitproblem = value.split()[-1]
FreeCAD.Console.PrintError(
'{} Unit {} is known by FreeCAD, but wrong for parameter {}.\n'
.format(some_text, unitproblem, param)
)
except Exception:
FreeCAD.Console.PrintError(
'{} Unknown problem.\n'
.format(some_text)
)
except ValueError:
unitproblem = value.split()[-1]
FreeCAD.Console.PrintError(
'{} Unit {} is unknown to FreeCAD.\n'
.format(some_text, unitproblem)
)
except Exception:
FreeCAD.Console.PrintError(
'{} Unknown problem.\n'
.format(some_text)
)
else:
FreeCAD.Console.PrintError(
'Parameter {} is unknown to the FreeCAD unit system.\n'
.format(param)
)
return False
def output_parm_unit_info(param):
# check unit
from FreeCAD import Units
FreeCAD.Console.PrintMessage('{}\n'.format(param))
if hasattr(Units, param):
FreeCAD.Console.PrintMessage(
'\nParameter {} is known to FreeCAD unit system.'
.format(param)
)
# get unit and other information known by FreeCAD for this parameter
unit = getattr(Units, param)
FreeCAD.Console.PrintMessage(
'{}\n'
.format(unit)
)
quantity = Units.Quantity(1, unit)
FreeCAD.Console.PrintMessage(
'{}\n'
.format(quantity)
)
user_preferred_unit = quantity.getUserPreferred()[2]
FreeCAD.Console.PrintMessage(
'{}\n'
.format(user_preferred_unit)
)
else:
FreeCAD.Console.PrintMessage(
'Parameter {} is Unknown to the FreeCAD unit system.'
.format(param)
)
def output_value_unit_info(param, value):
# check unit
from FreeCAD import Units
some_text = "Parameter: {} --> value: {} -->".format(param, value)
FreeCAD.Console.PrintMessage('{} unit information:'.format(some_text))
if hasattr(Units, param):
# get unit and other information known by FreeCAD for this parameter
unit = getattr(Units, param)
FreeCAD.Console.PrintMessage(
'{}\n'
.format(unit)
)
quantity = Units.Quantity(1, unit)
FreeCAD.Console.PrintMessage(
'{}\n'
.format(quantity)
)
user_preferred_unit = quantity.getUserPreferred()[2]
FreeCAD.Console.PrintMessage(
'{}\n'
.format(user_preferred_unit)
)
# test unit from mat dict value
try:
param_value = Units.Quantity(value)
try:
user_unit = param_value.getValueAs(user_preferred_unit)
FreeCAD.Console.PrintMessage(
'{} Value in preferred unit: {}\n'
.format(some_text, user_unit)
)
except ValueError:
unitproblem = value.split()[-1]
FreeCAD.Console.PrintError(
'{} Unit {} is known by FreeCAD, but wrong for parameter {}.\n'
.format(some_text, unitproblem, param)
)
except Exception:
FreeCAD.Console.PrintError(
'{} Unknown problem.\n'
.format(some_text)
)
except ValueError:
unitproblem = value.split()[-1]
FreeCAD.Console.PrintError(
'{} Unit {} is unknown by FreeCAD.\n'
.format(some_text, unitproblem)
)
except Exception:
FreeCAD.Console.PrintError(
'{} Unknown problem.\n'
.format(some_text)
)
else:
FreeCAD.Console.PrintMessage(
'Parameter {} is unknown to the FreeCAD unit system.'
.format(param)
)
def check_mat_units(mat):
known_quantities = get_known_material_quantity_parameter()
# check if the param is a Quantity according to the card template
# then check unit
# print(known_quantities)
units_ok = True
for param, value in mat.items():
if param in known_quantities:
if check_value_unit(param, value) is False:
if units_ok is True:
units_ok = False
else:
pass
# print('{} is not a known FreeCAD quantity.'.format(param))
# print('')
return units_ok
# ***** some code examples ***********************************************************************
'''
# cards, params, icons and resources **********
from materialtools.cardutils import get_material_resources as getres
from materialtools.cardutils import output_resources as outres
outres(getres())
from materialtools.cardutils import import_materials as getmats
from materialtools.cardutils import output_materials as outmats
from materialtools.cardutils import output_trio as outtrio
outmats(getmats()[0])
outtrio(getmats())
a,b,c = getmats()
materials, cards, icons = getmats()
# param template, header, template card **********
from materialtools.cardutils import get_material_template as gettemplate
gettemplate()
gettemplate()[1]['General']['Description']
gettemplate()[2]['Mechanical']['FractureToughness']
from materialtools.cardutils import get_material_template as gettemplate
template_data=gettemplate()
for group in template_data:
gname = list(group)[0] # group dict has only one key
for prop_name in group[gname]:
#prop_dict = group[gname][prop_name]
#print(prop_dict)
#print(prop_dict['Description'])
print(group[gname][prop_name]['Description'])
from materialtools.cardutils import create_mat_tools_header as createheader
createheader()
from materialtools.cardutils import create_mat_template_card as createtemplate
createtemplate()
createtemplate(False)
from materialtools.cardutils import get_source_path as getsrc
getsrc()
# generate all cards **********
# run tools in source dir
./make_ods.sh
./make_FCMats.sh
# read cards
from materialtools.cardutils import read_cards_from_path as readcards
from materialtools.cardutils import get_source_path as getsrc
cards_data = readcards(getsrc() + '/src/Mod/Material/StandardMaterial/')
# print cards
for c in cards_data:
print(c)
# write cards
from materialtools.cardutils import write_cards_to_path as writecards
from materialtools.cardutils import get_source_path as getsrc
# True writes sections ( method write_group_section is used =)
writecards(getsrc() + '/src/Mod/Material/StandardMaterial/', cards_data, True)
writecards(getsrc() + '/src/Mod/Material/StandardMaterial/', cards_data, False)
# last True writes the TEMPLATE card which has no mat params because they have no values
writecards(getsrc() + '/src/Mod/Material/StandardMaterial/', cards_data, True, True)
# material quantity parameter unit checks **********
from materialtools.cardutils import output_parm_unit_info as unitinfo
unitinfo('YoungsModulus')
unitinfo('FractureToughness')
unitinfo('PoissonRatio')
from materialtools.cardutils import check_parm_unit as checkparamunit
checkparamunit('YoungsModulus')
checkparamunit('FractureToughness')
from materialtools.cardutils import output_value_unit_info as valueunitinfo
valueunitinfo('YoungsModulus', '1 MPa')
valueunitinfo('FractureToughness', '25')
valueunitinfo('Density', '1 kg/m^3')
valueunitinfo('Density', '0 kg/m^3')
from materialtools.cardutils import check_value_unit as checkvalueunit
checkvalueunit('YoungsModulus', '1 MPa')
checkvalueunit('FractureToughness', '25')
checkvalueunit('Density', '1 kg/m^3')
checkvalueunit('Density', '0 kg/m^3')
# syntax error in unit system, only the try: except in the checkvalueunit let it work
checkvalueunit('ThermalConductivity', '0.02583 W/m/K')
checkvalueunit('ThermalConductivity', '123abc456 W/m/K')
checkvalueunit('ThermalConductivity', '25.83e−3 W/m/K')
checkvalueunit('ThermalConductivity', '25.83e-3 W/m/K')
from FreeCAD import Units
Units.Quantity('25.83e−3 W/m/K')
# test mat unit properties
mat = {
'Name': 'Concrete',
'AngleOfFriction' : '1 deg',
'CompressiveStrength': '1 MPa',
'Density': '1 kg/m^3',
'ShearModulus' : '1 MPa',
'UltimateTensileStrength' : '1 MPa',
'YieldStrength' : '1 MPa',
'YoungsModulus': '1 MPa',
'SpecificHeat' : '1 J/kg/K',
'ThermalConductivity' : '1 W/m/K',
'ThermalExpansionCoefficient' : '1 mm/mm/K'
}
from materialtools.cardutils import check_mat_units as checkunits
checkunits(mat)
# unknown quantities, returns True too
mat = {
'Name': 'Concrete',
'FractureToughness' : '1',
'PoissonRatio': '0.17' # no unit but important too, proof somehow too
}
from materialtools.cardutils import check_mat_units as checkunits
checkunits(mat)
# wrong units
mat = {
'Name': 'Concrete',
'CompressiveStrength': '12356 MBa', # type on unit, means unit not knwn
'YoungsModulus': '654321 m', # unit known, but wrong unit for this property
}
from materialtools.cardutils import check_mat_units as checkunits
checkunits(mat)
# missing unit, returns False
mat = {
'Name': 'Concrete',
'YoungsModulus' : '1'
}
from materialtools.cardutils import check_mat_units as checkunits
checkunits(mat)
# empty dict, returns True
from materialtools.cardutils import check_mat_units as checkunits
checkunits({})
# some unit code **********
from FreeCAD import Units
getattr(Units, 'Pressure')
Units.Pressure
Units.Quantity('25 MPa')
Units.Quantity('25 MPa').getValueAs('Pa')
Units.Quantity('25 MPa').getUserPreferred()[2]
Units.Quantity(25000, Units.Pressure)
Units.Quantity(25000, Units.Pressure).getValueAs('MPa')
Units.Unit('25 MPa')
Units.Unit(-1,1,-2,0,0,0,0,0)
# base units
from FreeCAD import Units
Units.Length
Units.Mass
Units.TimeSpan
Units.ElectricCurrent
Units.Temperature
Units.AmountOfSubstance
Units.LuminousIntensity
Units.Angle
'''
|