pyfemtet 0.9.5__py3-none-any.whl → 1.0.0b0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of pyfemtet might be problematic. Click here for more details.

Files changed (272) hide show
  1. pyfemtet/__init__.py +6 -1
  2. pyfemtet/_i18n/1. make_pot_and_update_po.bat +8 -0
  3. pyfemtet/_i18n/2. build_mo.bat +5 -0
  4. pyfemtet/_i18n/__init__.py +4 -0
  5. pyfemtet/_i18n/babel.cfg +2 -0
  6. pyfemtet/_i18n/i18n.py +37 -0
  7. pyfemtet/_i18n/locales/ja/LC_MESSAGES/messages.mo +0 -0
  8. pyfemtet/_i18n/locales/ja/LC_MESSAGES/messages.po +1020 -0
  9. pyfemtet/_i18n/locales/messages.pot +987 -0
  10. pyfemtet/{_message → _i18n}/messages.py +128 -41
  11. pyfemtet/_util/closing.py +19 -0
  12. pyfemtet/_util/dask_util.py +89 -7
  13. pyfemtet/_util/df_util.py +29 -0
  14. pyfemtet/_util/excel_macro_util.py +8 -3
  15. pyfemtet/_util/excel_parse_util.py +43 -23
  16. pyfemtet/_util/femtet_access_inspection.py +120 -0
  17. pyfemtet/{_femtet_config_util/autosave.py → _util/femtet_autosave.py} +7 -0
  18. pyfemtet/_util/femtet_exit.py +105 -0
  19. pyfemtet/_util/femtet_version.py +20 -0
  20. pyfemtet/_util/helper.py +94 -0
  21. pyfemtet/_util/process_util.py +107 -0
  22. pyfemtet/_util/str_enum.py +44 -0
  23. pyfemtet/core.py +15 -47
  24. pyfemtet/dispatch_extensions/__init__.py +8 -11
  25. pyfemtet/dispatch_extensions/_impl.py +42 -198
  26. pyfemtet/logger/__init__.py +8 -1
  27. pyfemtet/logger/_impl.py +5 -6
  28. pyfemtet/opt/__init__.py +3 -17
  29. pyfemtet/opt/exceptions.py +45 -0
  30. pyfemtet/opt/femopt.py +608 -0
  31. pyfemtet/opt/history/__init__.py +11 -0
  32. pyfemtet/opt/history/_history.py +1404 -0
  33. pyfemtet/opt/history/_hypervolume.py +169 -0
  34. pyfemtet/opt/history/_optimality.py +79 -0
  35. pyfemtet/opt/interface/__init__.py +17 -24
  36. pyfemtet/opt/interface/_base_interface.py +222 -0
  37. pyfemtet/opt/interface/_excel_interface/__init__.py +3 -0
  38. pyfemtet/opt/interface/_excel_interface/debug-excel-interface.xlsm +0 -0
  39. pyfemtet/opt/interface/_excel_interface/excel_interface.py +999 -0
  40. pyfemtet/opt/interface/_femtet_interface/__init__.py +3 -0
  41. pyfemtet/opt/interface/{_femtet_parametric.py → _femtet_interface/_femtet_parametric.py} +20 -12
  42. pyfemtet/opt/interface/{_femtet.py → _femtet_interface/femtet_interface.py} +505 -349
  43. pyfemtet/opt/interface/_femtet_with_nx_interface/__init__.py +5 -0
  44. pyfemtet/opt/interface/_femtet_with_nx_interface/femtet_with_nx_interface.py +230 -0
  45. pyfemtet/opt/interface/_femtet_with_nx_interface/model1.prt +0 -0
  46. pyfemtet/opt/interface/_femtet_with_nx_interface/model1.x_t +98 -0
  47. pyfemtet/opt/interface/{_femtet_with_nx → _femtet_with_nx_interface}/update_model.py +1 -3
  48. pyfemtet/opt/interface/_femtet_with_solidworks/__init__.py +5 -0
  49. pyfemtet/opt/interface/_femtet_with_solidworks/femtet_with_solidworks_interface.py +122 -0
  50. pyfemtet/opt/interface/_solidworks_interface/__init__.py +5 -0
  51. pyfemtet/opt/interface/_solidworks_interface/solidworks_interface.py +206 -0
  52. pyfemtet/opt/interface/_surrogate_model_interface/__init__.py +8 -0
  53. pyfemtet/opt/interface/_surrogate_model_interface/base_surrogate_interface.py +150 -0
  54. pyfemtet/opt/interface/_surrogate_model_interface/botorch_interface.py +298 -0
  55. pyfemtet/opt/interface/_surrogate_model_interface/debug-pof-botorch.reccsv +18 -0
  56. pyfemtet/opt/interface/_with_excel_settings/__init__.py +61 -0
  57. pyfemtet/opt/interface/_with_excel_settings/with_excel_settings.py +134 -0
  58. pyfemtet/opt/meta_script/YAML_Generator.xlsm +0 -0
  59. pyfemtet/opt/meta_script/__main__.py +58 -36
  60. pyfemtet/opt/optimizer/__init__.py +7 -9
  61. pyfemtet/opt/optimizer/_base_optimizer.py +885 -0
  62. pyfemtet/opt/optimizer/optuna_optimizer/__init__.py +9 -0
  63. pyfemtet/opt/optimizer/optuna_optimizer/_optuna_attribute.py +73 -0
  64. pyfemtet/opt/optimizer/optuna_optimizer/_optuna_optimizer.py +678 -0
  65. pyfemtet/opt/optimizer/optuna_optimizer/_pof_botorch/__init__.py +7 -0
  66. pyfemtet/opt/optimizer/optuna_optimizer/_pof_botorch/debug-pof-botorch.reccsv +18 -0
  67. pyfemtet/opt/optimizer/optuna_optimizer/_pof_botorch/enable_nonlinear_constraint.py +244 -0
  68. pyfemtet/opt/optimizer/optuna_optimizer/_pof_botorch/pof_botorch_sampler.py +1249 -0
  69. pyfemtet/opt/optimizer/optuna_optimizer/wat_ex14_parametric_jp.femprj +0 -0
  70. pyfemtet/opt/optimizer/scipy_optimizer/__init__.py +1 -0
  71. pyfemtet/opt/optimizer/scipy_optimizer/_scipy_optimizer.py +364 -0
  72. pyfemtet/opt/prediction/__init__.py +7 -0
  73. pyfemtet/opt/prediction/_botorch_utils.py +133 -0
  74. pyfemtet/opt/prediction/_gpytorch_modules_extension.py +142 -0
  75. pyfemtet/opt/prediction/_helper.py +155 -0
  76. pyfemtet/opt/prediction/_model.py +118 -0
  77. pyfemtet/opt/problem/problem.py +304 -0
  78. pyfemtet/opt/problem/variable_manager/__init__.py +20 -0
  79. pyfemtet/opt/problem/variable_manager/_string_as_expression.py +115 -0
  80. pyfemtet/opt/problem/variable_manager/_variable_manager.py +295 -0
  81. pyfemtet/opt/visualization/history_viewer/__main__.py +5 -0
  82. pyfemtet/opt/visualization/{_base.py → history_viewer/_base_application.py} +18 -13
  83. pyfemtet/opt/visualization/history_viewer/_common_pages.py +150 -0
  84. pyfemtet/opt/visualization/{_complex_components → history_viewer/_complex_components}/alert_region.py +10 -5
  85. pyfemtet/opt/visualization/{_complex_components → history_viewer/_complex_components}/control_femtet.py +16 -13
  86. pyfemtet/opt/visualization/{_complex_components → history_viewer/_complex_components}/main_graph.py +117 -47
  87. pyfemtet/opt/visualization/{_complex_components → history_viewer/_complex_components}/pm_graph.py +159 -138
  88. pyfemtet/opt/visualization/history_viewer/_process_monitor/_application.py +173 -0
  89. pyfemtet/opt/visualization/history_viewer/_process_monitor/_pages.py +291 -0
  90. pyfemtet/opt/visualization/{_wrapped_components → history_viewer/_wrapped_components}/dbc.py +1 -1
  91. pyfemtet/opt/visualization/{_wrapped_components → history_viewer/_wrapped_components}/dcc.py +1 -1
  92. pyfemtet/opt/visualization/{_wrapped_components → history_viewer/_wrapped_components}/html.py +1 -1
  93. pyfemtet/opt/visualization/history_viewer/result_viewer/__main__.py +5 -0
  94. pyfemtet/opt/visualization/{result_viewer/application.py → history_viewer/result_viewer/_application.py} +6 -6
  95. pyfemtet/opt/visualization/{result_viewer/pages.py → history_viewer/result_viewer/_pages.py} +106 -82
  96. pyfemtet/opt/visualization/history_viewer/result_viewer/tutorial_files/tutorial_gau_ex08.csv +18 -0
  97. pyfemtet/opt/visualization/history_viewer/result_viewer/tutorial_files/tutorial_gau_ex08.db +0 -0
  98. pyfemtet/opt/visualization/history_viewer/result_viewer/tutorial_files/tutorial_gau_ex08_parametric.Results/ex8.jpg +0 -0
  99. pyfemtet/opt/visualization/history_viewer/result_viewer/tutorial_files/tutorial_gau_ex08_parametric.Results/ex8.log +45 -0
  100. pyfemtet/opt/visualization/history_viewer/result_viewer/tutorial_files/tutorial_gau_ex08_parametric.Results/ex8.pdt +0 -0
  101. pyfemtet/opt/visualization/history_viewer/result_viewer/tutorial_files/tutorial_gau_ex08_parametric.Results/ex8_trial_1.jpg +0 -0
  102. pyfemtet/opt/visualization/history_viewer/result_viewer/tutorial_files/tutorial_gau_ex08_parametric.Results/ex8_trial_1.pdt +0 -0
  103. pyfemtet/opt/visualization/history_viewer/result_viewer/tutorial_files/tutorial_gau_ex08_parametric.Results/ex8_trial_10.jpg +0 -0
  104. pyfemtet/opt/visualization/history_viewer/result_viewer/tutorial_files/tutorial_gau_ex08_parametric.Results/ex8_trial_10.pdt +0 -0
  105. pyfemtet/opt/visualization/history_viewer/result_viewer/tutorial_files/tutorial_gau_ex08_parametric.Results/ex8_trial_11.jpg +0 -0
  106. pyfemtet/opt/visualization/history_viewer/result_viewer/tutorial_files/tutorial_gau_ex08_parametric.Results/ex8_trial_11.pdt +0 -0
  107. pyfemtet/opt/visualization/history_viewer/result_viewer/tutorial_files/tutorial_gau_ex08_parametric.Results/ex8_trial_12.jpg +0 -0
  108. pyfemtet/opt/visualization/history_viewer/result_viewer/tutorial_files/tutorial_gau_ex08_parametric.Results/ex8_trial_12.pdt +0 -0
  109. pyfemtet/opt/visualization/history_viewer/result_viewer/tutorial_files/tutorial_gau_ex08_parametric.Results/ex8_trial_13.jpg +0 -0
  110. pyfemtet/opt/visualization/history_viewer/result_viewer/tutorial_files/tutorial_gau_ex08_parametric.Results/ex8_trial_13.pdt +0 -0
  111. pyfemtet/opt/visualization/history_viewer/result_viewer/tutorial_files/tutorial_gau_ex08_parametric.Results/ex8_trial_14.jpg +0 -0
  112. pyfemtet/opt/visualization/history_viewer/result_viewer/tutorial_files/tutorial_gau_ex08_parametric.Results/ex8_trial_14.pdt +0 -0
  113. pyfemtet/opt/visualization/history_viewer/result_viewer/tutorial_files/tutorial_gau_ex08_parametric.Results/ex8_trial_15.jpg +0 -0
  114. pyfemtet/opt/visualization/history_viewer/result_viewer/tutorial_files/tutorial_gau_ex08_parametric.Results/ex8_trial_15.pdt +0 -0
  115. pyfemtet/opt/visualization/history_viewer/result_viewer/tutorial_files/tutorial_gau_ex08_parametric.Results/ex8_trial_16.jpg +0 -0
  116. pyfemtet/opt/visualization/history_viewer/result_viewer/tutorial_files/tutorial_gau_ex08_parametric.Results/ex8_trial_16.pdt +0 -0
  117. pyfemtet/opt/visualization/history_viewer/result_viewer/tutorial_files/tutorial_gau_ex08_parametric.Results/ex8_trial_17.jpg +0 -0
  118. pyfemtet/opt/visualization/history_viewer/result_viewer/tutorial_files/tutorial_gau_ex08_parametric.Results/ex8_trial_17.pdt +0 -0
  119. pyfemtet/opt/visualization/history_viewer/result_viewer/tutorial_files/tutorial_gau_ex08_parametric.Results/ex8_trial_18.jpg +0 -0
  120. pyfemtet/opt/visualization/history_viewer/result_viewer/tutorial_files/tutorial_gau_ex08_parametric.Results/ex8_trial_18.pdt +0 -0
  121. pyfemtet/opt/visualization/history_viewer/result_viewer/tutorial_files/tutorial_gau_ex08_parametric.Results/ex8_trial_19.jpg +0 -0
  122. pyfemtet/opt/visualization/history_viewer/result_viewer/tutorial_files/tutorial_gau_ex08_parametric.Results/ex8_trial_19.pdt +0 -0
  123. pyfemtet/opt/visualization/history_viewer/result_viewer/tutorial_files/tutorial_gau_ex08_parametric.Results/ex8_trial_2.jpg +0 -0
  124. pyfemtet/opt/visualization/history_viewer/result_viewer/tutorial_files/tutorial_gau_ex08_parametric.Results/ex8_trial_2.pdt +0 -0
  125. pyfemtet/opt/visualization/history_viewer/result_viewer/tutorial_files/tutorial_gau_ex08_parametric.Results/ex8_trial_20.jpg +0 -0
  126. pyfemtet/opt/visualization/history_viewer/result_viewer/tutorial_files/tutorial_gau_ex08_parametric.Results/ex8_trial_20.pdt +0 -0
  127. pyfemtet/opt/visualization/history_viewer/result_viewer/tutorial_files/tutorial_gau_ex08_parametric.Results/ex8_trial_3.jpg +0 -0
  128. pyfemtet/opt/visualization/history_viewer/result_viewer/tutorial_files/tutorial_gau_ex08_parametric.Results/ex8_trial_3.pdt +0 -0
  129. pyfemtet/opt/visualization/history_viewer/result_viewer/tutorial_files/tutorial_gau_ex08_parametric.Results/ex8_trial_4.bgr +0 -0
  130. pyfemtet/opt/visualization/history_viewer/result_viewer/tutorial_files/tutorial_gau_ex08_parametric.Results/ex8_trial_4.bnd +0 -0
  131. pyfemtet/opt/visualization/history_viewer/result_viewer/tutorial_files/tutorial_gau_ex08_parametric.Results/ex8_trial_4.btr +0 -0
  132. pyfemtet/opt/visualization/history_viewer/result_viewer/tutorial_files/tutorial_gau_ex08_parametric.Results/ex8_trial_4.jpg +0 -0
  133. pyfemtet/opt/visualization/history_viewer/result_viewer/tutorial_files/tutorial_gau_ex08_parametric.Results/ex8_trial_4.mtl +0 -0
  134. pyfemtet/opt/visualization/history_viewer/result_viewer/tutorial_files/tutorial_gau_ex08_parametric.Results/ex8_trial_4.pdt +0 -0
  135. pyfemtet/opt/visualization/history_viewer/result_viewer/tutorial_files/tutorial_gau_ex08_parametric.Results/ex8_trial_4.prm +0 -0
  136. pyfemtet/opt/visualization/history_viewer/result_viewer/tutorial_files/tutorial_gau_ex08_parametric.Results/ex8_trial_5.jpg +0 -0
  137. pyfemtet/opt/visualization/history_viewer/result_viewer/tutorial_files/tutorial_gau_ex08_parametric.Results/ex8_trial_5.pdt +0 -0
  138. pyfemtet/opt/visualization/history_viewer/result_viewer/tutorial_files/tutorial_gau_ex08_parametric.Results/ex8_trial_6.jpg +0 -0
  139. pyfemtet/opt/visualization/history_viewer/result_viewer/tutorial_files/tutorial_gau_ex08_parametric.Results/ex8_trial_6.pdt +0 -0
  140. pyfemtet/opt/visualization/history_viewer/result_viewer/tutorial_files/tutorial_gau_ex08_parametric.Results/ex8_trial_7.jpg +0 -0
  141. pyfemtet/opt/visualization/history_viewer/result_viewer/tutorial_files/tutorial_gau_ex08_parametric.Results/ex8_trial_7.pdt +0 -0
  142. pyfemtet/opt/visualization/history_viewer/result_viewer/tutorial_files/tutorial_gau_ex08_parametric.Results/ex8_trial_8.jpg +0 -0
  143. pyfemtet/opt/visualization/history_viewer/result_viewer/tutorial_files/tutorial_gau_ex08_parametric.Results/ex8_trial_8.pdt +0 -0
  144. pyfemtet/opt/visualization/history_viewer/result_viewer/tutorial_files/tutorial_gau_ex08_parametric.Results/ex8_trial_9.jpg +0 -0
  145. pyfemtet/opt/visualization/history_viewer/result_viewer/tutorial_files/tutorial_gau_ex08_parametric.Results/ex8_trial_9.pdt +0 -0
  146. pyfemtet/opt/visualization/history_viewer/result_viewer/tutorial_files/tutorial_gau_ex08_parametric.femprj +0 -0
  147. pyfemtet/opt/visualization/plotter/main_figure_creator.py +536 -0
  148. pyfemtet/opt/visualization/plotter/pm_graph_creator.py +359 -0
  149. pyfemtet/opt/worker_status.py +120 -0
  150. {pyfemtet-0.9.5.dist-info → pyfemtet-1.0.0b0.dist-info}/METADATA +23 -24
  151. pyfemtet-1.0.0b0.dist-info/RECORD +172 -0
  152. pyfemtet-1.0.0b0.dist-info/entry_points.txt +3 -0
  153. pyfemtet/_femtet_config_util/exit.py +0 -59
  154. pyfemtet/_message/1. make_pot.bat +0 -11
  155. pyfemtet/_message/2. make_mo.bat +0 -6
  156. pyfemtet/_message/__init__.py +0 -5
  157. pyfemtet/_message/babel.cfg +0 -2
  158. pyfemtet/_message/locales/ja/LC_MESSAGES/messages.mo +0 -0
  159. pyfemtet/_message/locales/ja/LC_MESSAGES/messages.po +0 -570
  160. pyfemtet/_message/locales/messages.pot +0 -551
  161. pyfemtet/_warning.py +0 -87
  162. pyfemtet/brep/_impl.py +0 -18
  163. pyfemtet/opt/_femopt.py +0 -1007
  164. pyfemtet/opt/_femopt_core.py +0 -1169
  165. pyfemtet/opt/_test_utils/control_femtet.py +0 -39
  166. pyfemtet/opt/_test_utils/hyper_sphere.py +0 -24
  167. pyfemtet/opt/_test_utils/record_history.py +0 -130
  168. pyfemtet/opt/advanced_samples/excel_ui/(ref) original_project.femprj +0 -0
  169. pyfemtet/opt/advanced_samples/excel_ui/femtet-macro.xlsm +0 -0
  170. pyfemtet/opt/advanced_samples/excel_ui/pyfemtet-core.py +0 -291
  171. pyfemtet/opt/advanced_samples/excel_ui/test-pyfemtet-core.cmd +0 -22
  172. pyfemtet/opt/advanced_samples/restart/gal_ex13_parametric.femprj +0 -0
  173. pyfemtet/opt/advanced_samples/restart/gal_ex13_parametric_restart.py +0 -99
  174. pyfemtet/opt/advanced_samples/restart/gal_ex13_parametric_restart_jp.py +0 -102
  175. pyfemtet/opt/advanced_samples/surrogate_model/gal_ex13_create_training_data.py +0 -60
  176. pyfemtet/opt/advanced_samples/surrogate_model/gal_ex13_create_training_data_jp.py +0 -57
  177. pyfemtet/opt/advanced_samples/surrogate_model/gal_ex13_optimize_with_surrogate.py +0 -100
  178. pyfemtet/opt/advanced_samples/surrogate_model/gal_ex13_optimize_with_surrogate_jp.py +0 -90
  179. pyfemtet/opt/advanced_samples/surrogate_model/gal_ex13_parametric.femprj +0 -0
  180. pyfemtet/opt/interface/_base.py +0 -101
  181. pyfemtet/opt/interface/_excel_interface.py +0 -984
  182. pyfemtet/opt/interface/_femtet_excel.py +0 -141
  183. pyfemtet/opt/interface/_femtet_with_nx/__init__.py +0 -3
  184. pyfemtet/opt/interface/_femtet_with_nx/_interface.py +0 -178
  185. pyfemtet/opt/interface/_femtet_with_sldworks.py +0 -298
  186. pyfemtet/opt/interface/_surrogate/__init__.py +0 -5
  187. pyfemtet/opt/interface/_surrogate/_base.py +0 -129
  188. pyfemtet/opt/interface/_surrogate/_chaospy.py +0 -71
  189. pyfemtet/opt/interface/_surrogate/_singletaskgp.py +0 -71
  190. pyfemtet/opt/interface/_surrogate_excel.py +0 -102
  191. pyfemtet/opt/optimizer/_base.py +0 -376
  192. pyfemtet/opt/optimizer/_optuna/_botorch_patch/enable_nonlinear_constraint.py +0 -220
  193. pyfemtet/opt/optimizer/_optuna/_optuna.py +0 -434
  194. pyfemtet/opt/optimizer/_optuna/_pof_botorch.py +0 -1914
  195. pyfemtet/opt/optimizer/_scipy.py +0 -159
  196. pyfemtet/opt/optimizer/_scipy_scalar.py +0 -127
  197. pyfemtet/opt/optimizer/parameter.py +0 -113
  198. pyfemtet/opt/prediction/_base.py +0 -61
  199. pyfemtet/opt/prediction/single_task_gp.py +0 -119
  200. pyfemtet/opt/samples/femprj_sample/ParametricIF.femprj +0 -0
  201. pyfemtet/opt/samples/femprj_sample/ParametricIF.py +0 -29
  202. pyfemtet/opt/samples/femprj_sample/ParametricIF_test_result.reccsv +0 -13
  203. pyfemtet/opt/samples/femprj_sample/cad_ex01_NX.femprj +0 -0
  204. pyfemtet/opt/samples/femprj_sample/cad_ex01_NX.prt +0 -0
  205. pyfemtet/opt/samples/femprj_sample/cad_ex01_NX.py +0 -135
  206. pyfemtet/opt/samples/femprj_sample/cad_ex01_NX_test_result.reccsv +0 -23
  207. pyfemtet/opt/samples/femprj_sample/cad_ex01_SW.SLDPRT +0 -0
  208. pyfemtet/opt/samples/femprj_sample/cad_ex01_SW.femprj +0 -0
  209. pyfemtet/opt/samples/femprj_sample/cad_ex01_SW.py +0 -131
  210. pyfemtet/opt/samples/femprj_sample/cad_ex01_SW_test_result.reccsv +0 -23
  211. pyfemtet/opt/samples/femprj_sample/constrained_pipe.femprj +0 -0
  212. pyfemtet/opt/samples/femprj_sample/constrained_pipe.py +0 -96
  213. pyfemtet/opt/samples/femprj_sample/constrained_pipe_test_result.reccsv +0 -13
  214. pyfemtet/opt/samples/femprj_sample/gal_ex58_parametric.femprj +0 -0
  215. pyfemtet/opt/samples/femprj_sample/gal_ex58_parametric.py +0 -74
  216. pyfemtet/opt/samples/femprj_sample/gal_ex58_parametric_test_result.reccsv +0 -13
  217. pyfemtet/opt/samples/femprj_sample/gau_ex08_parametric.femprj +0 -0
  218. pyfemtet/opt/samples/femprj_sample/gau_ex08_parametric.py +0 -58
  219. pyfemtet/opt/samples/femprj_sample/gau_ex08_parametric_test_result.reccsv +0 -23
  220. pyfemtet/opt/samples/femprj_sample/gau_ex12_parametric.femprj +0 -0
  221. pyfemtet/opt/samples/femprj_sample/gau_ex12_parametric.py +0 -52
  222. pyfemtet/opt/samples/femprj_sample/her_ex40_parametric.femprj +0 -0
  223. pyfemtet/opt/samples/femprj_sample/her_ex40_parametric.py +0 -138
  224. pyfemtet/opt/samples/femprj_sample/her_ex40_parametric_test_result.reccsv +0 -18
  225. pyfemtet/opt/samples/femprj_sample/paswat_ex1_parametric.femprj +0 -0
  226. pyfemtet/opt/samples/femprj_sample/paswat_ex1_parametric.py +0 -60
  227. pyfemtet/opt/samples/femprj_sample/paswat_ex1_parametric_parallel.py +0 -61
  228. pyfemtet/opt/samples/femprj_sample/paswat_ex1_parametric_test_result.reccsv +0 -18
  229. pyfemtet/opt/samples/femprj_sample/wat_ex14_parametric.femprj +0 -0
  230. pyfemtet/opt/samples/femprj_sample/wat_ex14_parametric.py +0 -58
  231. pyfemtet/opt/samples/femprj_sample/wat_ex14_parametric_parallel.py +0 -58
  232. pyfemtet/opt/samples/femprj_sample/wat_ex14_parametric_test_result.reccsv +0 -18
  233. pyfemtet/opt/samples/femprj_sample_jp/ParametricIF_jp.femprj +0 -0
  234. pyfemtet/opt/samples/femprj_sample_jp/ParametricIF_jp.py +0 -29
  235. pyfemtet/opt/samples/femprj_sample_jp/cad_ex01_NX_jp.femprj +0 -0
  236. pyfemtet/opt/samples/femprj_sample_jp/cad_ex01_NX_jp.py +0 -129
  237. pyfemtet/opt/samples/femprj_sample_jp/cad_ex01_SW_jp.femprj +0 -0
  238. pyfemtet/opt/samples/femprj_sample_jp/cad_ex01_SW_jp.py +0 -125
  239. pyfemtet/opt/samples/femprj_sample_jp/constrained_pipe_jp.py +0 -93
  240. pyfemtet/opt/samples/femprj_sample_jp/gal_ex58_parametric_jp.femprj +0 -0
  241. pyfemtet/opt/samples/femprj_sample_jp/gal_ex58_parametric_jp.py +0 -70
  242. pyfemtet/opt/samples/femprj_sample_jp/gau_ex08_parametric_jp.femprj +0 -0
  243. pyfemtet/opt/samples/femprj_sample_jp/gau_ex08_parametric_jp.py +0 -57
  244. pyfemtet/opt/samples/femprj_sample_jp/gau_ex12_parametric_jp.py +0 -52
  245. pyfemtet/opt/samples/femprj_sample_jp/her_ex40_parametric_jp.femprj +0 -0
  246. pyfemtet/opt/samples/femprj_sample_jp/her_ex40_parametric_jp.py +0 -138
  247. pyfemtet/opt/samples/femprj_sample_jp/paswat_ex1_parametric_jp.femprj +0 -0
  248. pyfemtet/opt/samples/femprj_sample_jp/paswat_ex1_parametric_jp.py +0 -58
  249. pyfemtet/opt/samples/femprj_sample_jp/paswat_ex1_parametric_parallel_jp.py +0 -59
  250. pyfemtet/opt/samples/femprj_sample_jp/wat_ex14_parametric_jp.py +0 -56
  251. pyfemtet/opt/samples/femprj_sample_jp/wat_ex14_parametric_parallel_jp.py +0 -56
  252. pyfemtet/opt/visualization/_complex_components/main_figure_creator.py +0 -332
  253. pyfemtet/opt/visualization/_complex_components/pm_graph_creator.py +0 -201
  254. pyfemtet/opt/visualization/_process_monitor/application.py +0 -226
  255. pyfemtet/opt/visualization/_process_monitor/pages.py +0 -406
  256. pyfemtet/opt/visualization/_wrapped_components/__init__.py +0 -0
  257. pyfemtet/opt/visualization/result_viewer/__init__.py +0 -0
  258. pyfemtet-0.9.5.dist-info/RECORD +0 -158
  259. pyfemtet-0.9.5.dist-info/entry_points.txt +0 -3
  260. /pyfemtet/{_femtet_config_util → opt/problem}/__init__.py +0 -0
  261. /pyfemtet/{brep → opt/visualization/history_viewer}/__init__.py +0 -0
  262. /pyfemtet/opt/{_test_utils → visualization/history_viewer/_complex_components}/__init__.py +0 -0
  263. /pyfemtet/opt/{optimizer/_optuna → visualization/history_viewer/_process_monitor}/__init__.py +0 -0
  264. /pyfemtet/opt/{optimizer/_optuna/_botorch_patch → visualization/history_viewer/_wrapped_components}/__init__.py +0 -0
  265. /pyfemtet/opt/visualization/{_wrapped_components → history_viewer/_wrapped_components}/str_enum.py +0 -0
  266. /pyfemtet/opt/visualization/{result_viewer → history_viewer/result_viewer}/.gitignore +0 -0
  267. /pyfemtet/opt/visualization/{_complex_components → history_viewer/result_viewer}/__init__.py +0 -0
  268. /pyfemtet/opt/visualization/{_process_monitor → plotter}/__init__.py +0 -0
  269. /pyfemtet/opt/{samples/femprj_sample_jp/wat_ex14_parametric_jp.femprj → wat_ex14_parametric_jp.femprj} +0 -0
  270. {pyfemtet-0.9.5.dist-info → pyfemtet-1.0.0b0.dist-info}/LICENSE +0 -0
  271. {pyfemtet-0.9.5.dist-info → pyfemtet-1.0.0b0.dist-info}/LICENSE_THIRD_PARTY.txt +0 -0
  272. {pyfemtet-0.9.5.dist-info → pyfemtet-1.0.0b0.dist-info}/WHEEL +0 -0
@@ -0,0 +1,987 @@
1
+ # Translations template for PROJECT.
2
+ # Copyright (C) 2025 ORGANIZATION
3
+ # This file is distributed under the same license as the PROJECT project.
4
+ # FIRST AUTHOR <EMAIL@ADDRESS>, 2025.
5
+ #
6
+ #, fuzzy
7
+ msgid ""
8
+ msgstr ""
9
+ "Project-Id-Version: PROJECT VERSION\n"
10
+ "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
11
+ "POT-Creation-Date: 2025-05-20 11:58+0900\n"
12
+ "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13
+ "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
+ "Language-Team: LANGUAGE <LL@li.org>\n"
15
+ "MIME-Version: 1.0\n"
16
+ "Content-Type: text/plain; charset=utf-8\n"
17
+ "Content-Transfer-Encoding: 8bit\n"
18
+ "Generated-By: Babel 2.17.0\n"
19
+
20
+ #: pyfemtet/core.py:9
21
+ msgid "Starting from version 1.0, the import method for the Error classes has changed. Please change imports such as `from pyfemtet.core import ModelError` to `from pyfemtet.opt.exceptions import ModelError`. For more details, please see https://pyfemtet.readthedocs.io/en/stable/pages/migration_to_v1.html."
22
+ msgstr ""
23
+
24
+ #: pyfemtet/_i18n/messages.py:6
25
+ msgid "Hello!"
26
+ msgstr ""
27
+
28
+ #: pyfemtet/_i18n/messages.py:9
29
+ msgid "Press enter to quit..."
30
+ msgstr ""
31
+
32
+ #: pyfemtet/_i18n/messages.py:10
33
+ msgid "constraint"
34
+ msgstr ""
35
+
36
+ #: pyfemtet/_i18n/messages.py:11
37
+ msgid "hidden constraint"
38
+ msgstr ""
39
+
40
+ #: pyfemtet/_i18n/messages.py:14
41
+ msgid "Waiting for launch femtet..."
42
+ msgstr ""
43
+
44
+ #: pyfemtet/_i18n/messages.py:15
45
+ msgid "Trying to connect Femtet..."
46
+ msgstr ""
47
+
48
+ #: pyfemtet/_i18n/messages.py:20
49
+ #, python-brace-format
50
+ msgid "Successfully connected. The pid of Femtet is {pid}."
51
+ msgstr ""
52
+
53
+ #: pyfemtet/_i18n/messages.py:27
54
+ #, python-brace-format
55
+ msgid "Searching Femtet (pid = {pid}) ..."
56
+ msgstr ""
57
+
58
+ #: pyfemtet/_i18n/messages.py:34
59
+ #, python-brace-format
60
+ msgid "Connection to Femtet (pid = {pid}) was notestablished in {timeout} sec"
61
+ msgstr ""
62
+
63
+ #: pyfemtet/_i18n/messages.py:41
64
+ msgid "The magnitude relationship is incorrect."
65
+ msgstr ""
66
+
67
+ #: pyfemtet/_i18n/messages.py:42
68
+ msgid "The direction of the objective function must be 'minimize', 'maximize' or a number. "
69
+ msgstr ""
70
+
71
+ #: pyfemtet/_i18n/messages.py:43
72
+ msgid "The variable name, object name, or constraint name contains characters that cannot be encoded. Do not use environment-dependent characters."
73
+ msgstr ""
74
+
75
+ #: pyfemtet/_i18n/messages.py:44
76
+ msgid "The running configuration does not match the configuration in the csv file."
77
+ msgstr ""
78
+
79
+ #: pyfemtet/_i18n/messages.py:47
80
+ msgid "Please specify initial_value."
81
+ msgstr ""
82
+
83
+ #: pyfemtet/_i18n/messages.py:49
84
+ msgid "Constraint functions are evaluated before analysis is performed, so do not access Femtet.Gogh. If you want your constraints to include values after analysis is performed, set the `strict` argument to False."
85
+ msgstr ""
86
+
87
+ #: pyfemtet/_i18n/messages.py:54
88
+ msgid "Optimization finished. Results were saved in following:"
89
+ msgstr ""
90
+
91
+ #: pyfemtet/_i18n/messages.py:55
92
+ msgid "No bounds specified."
93
+ msgstr ""
94
+
95
+ #: pyfemtet/_i18n/messages.py:56 pyfemtet/opt/femopt.py:426
96
+ msgid "The optimization is now complete. You can view the results on the monitor until you press Enter to exit the program."
97
+ msgstr ""
98
+
99
+ #: pyfemtet/_i18n/messages.py:59
100
+ msgid "\"%UGII_BASE_DIR%\\NXBIN\\run_journal.exe\" is not found. Make sure you have NX installed and the environment variable UGII_BASE_DIR is set."
101
+ msgstr ""
102
+
103
+ #: pyfemtet/_i18n/messages.py:60
104
+ msgid "Model reconstruction failed."
105
+ msgstr ""
106
+
107
+ #: pyfemtet/_i18n/messages.py:61
108
+ msgid "Model update failed."
109
+ msgstr ""
110
+
111
+ #: pyfemtet/_i18n/messages.py:62
112
+ #: pyfemtet/opt/interface/_femtet_interface/femtet_interface.py:358
113
+ msgid "It was detected that the configuration of Femtet python macro constants has not been completed. The configuration was done automatically (python -m win32com.client.makepy FemtetMacro). Please restart the program. If the error persists, please run \"py -m win32com.client.makepy FemtetMacro\" or \"python -m win32com.client.makepy FemtetMacro\" on the command prompt."
114
+ msgstr ""
115
+
116
+ #: pyfemtet/_i18n/messages.py:63
117
+ #: pyfemtet/opt/interface/_femtet_interface/femtet_interface.py:385
118
+ msgid "Failed to connect to Femtet."
119
+ msgstr ""
120
+
121
+ #: pyfemtet/_i18n/messages.py:68
122
+ #, python-brace-format
123
+ msgid "The Femtet process crashed and Python failed to restore Femtet. API: {name}"
124
+ msgstr ""
125
+
126
+ #: pyfemtet/_i18n/messages.py:77
127
+ #, python-brace-format
128
+ msgid "An abnormal termination of the Femtet process has been detected. Recovery will be attempted. API: {name}"
129
+ msgstr ""
130
+
131
+ #: pyfemtet/_i18n/messages.py:83
132
+ msgid "Femtet has been restarted and will perform analysis and attempt to recover."
133
+ msgstr ""
134
+
135
+ #: pyfemtet/_i18n/messages.py:84
136
+ msgid "If you specify 'new' as the 'connect_method' argument, set the 'femprj_path' argument to existing femprj file path."
137
+ msgstr ""
138
+
139
+ #: pyfemtet/_i18n/messages.py:85
140
+ msgid "The specified variable is not included in the Femtet analysis model. Note the capitalization of the variable."
141
+ msgstr ""
142
+
143
+ #: pyfemtet/_i18n/messages.py:86
144
+ msgid "The following APIs are not accessible: "
145
+ msgstr ""
146
+
147
+ #: pyfemtet/_i18n/messages.py:87
148
+ msgid "Macros may not be enabled in the installed version of Femtet. Please run the \"Enable Macros\" command from the start menu with administrator privileges in the same version of Femtet that is installed."
149
+ msgstr ""
150
+
151
+ #: pyfemtet/_i18n/messages.py:88
152
+ msgid "No analysis model is open"
153
+ msgstr ""
154
+
155
+ #: pyfemtet/_i18n/messages.py:89
156
+ msgid "The analysis model does not contain any variables."
157
+ msgstr ""
158
+
159
+ #: pyfemtet/_i18n/messages.py:90
160
+ msgid "Failed to update variables:"
161
+ msgstr ""
162
+
163
+ #: pyfemtet/_i18n/messages.py:91
164
+ msgid "The specified variable is not included in the analysis model and will be ignored."
165
+ msgstr ""
166
+
167
+ #: pyfemtet/_i18n/messages.py:92
168
+ msgid "Model history re-execute failed."
169
+ msgstr ""
170
+
171
+ #: pyfemtet/_i18n/messages.py:93
172
+ msgid "Model redraw failed."
173
+ msgstr ""
174
+
175
+ #: pyfemtet/_i18n/messages.py:94
176
+ msgid "Mesh generation failed"
177
+ msgstr ""
178
+
179
+ #: pyfemtet/_i18n/messages.py:95
180
+ msgid "Parametric solve failed"
181
+ msgstr ""
182
+
183
+ #: pyfemtet/_i18n/messages.py:96
184
+ msgid "Solve failed."
185
+ msgstr ""
186
+
187
+ #: pyfemtet/_i18n/messages.py:97
188
+ msgid "Failed to open result."
189
+ msgstr ""
190
+
191
+ #: pyfemtet/_i18n/messages.py:98
192
+ #: pyfemtet/opt/interface/_femtet_interface/femtet_interface.py:241
193
+ msgid "Failed to close Femtet."
194
+ msgstr ""
195
+
196
+ #: pyfemtet/_i18n/messages.py:99
197
+ msgid "Failed to save result (.pdt) file."
198
+ msgstr ""
199
+
200
+ #: pyfemtet/_i18n/messages.py:100
201
+ msgid "Failed to save screenshot (.jpg)."
202
+ msgstr ""
203
+
204
+ #: pyfemtet/_i18n/messages.py:101
205
+ msgid "Screenshot (.jpg) is not found."
206
+ msgstr ""
207
+
208
+ #: pyfemtet/_i18n/messages.py:102
209
+ msgid "Failed to update model in solidworks."
210
+ msgstr ""
211
+
212
+ #: pyfemtet/_i18n/messages.py:103
213
+ msgid "Probability of feasibility is less than threshold."
214
+ msgstr ""
215
+
216
+ #: pyfemtet/_i18n/messages.py:104
217
+ #: pyfemtet/opt/interface/_excel_interface/excel_interface.py:936
218
+ msgid "Terminating Excel process..."
219
+ msgstr ""
220
+
221
+ #: pyfemtet/_i18n/messages.py:105
222
+ #: pyfemtet/opt/interface/_excel_interface/excel_interface.py:955
223
+ msgid "Excel process is terminated."
224
+ msgstr ""
225
+
226
+ #: pyfemtet/_i18n/messages.py:106
227
+ #: pyfemtet/opt/interface/_excel_interface/excel_interface.py:961
228
+ msgid "Restore Femtet setting of autosave."
229
+ msgstr ""
230
+
231
+ #: pyfemtet/_i18n/messages.py:107
232
+ msgid "Failed to make output from Femtet. Please check output settings of Parametric Analysis."
233
+ msgstr ""
234
+
235
+ #: pyfemtet/_i18n/messages.py:111
236
+ msgid "The following features are not supported by the specified optimization method. "
237
+ msgstr ""
238
+
239
+ #: pyfemtet/_i18n/messages.py:112
240
+ msgid "The parameter set does not match the one added with add_init_parameter."
241
+ msgstr ""
242
+
243
+ #: pyfemtet/_i18n/messages.py:113
244
+ msgid "An exception has occurred during FEM update. Current parameters are: "
245
+ msgstr ""
246
+
247
+ #: pyfemtet/_i18n/messages.py:114
248
+ msgid "The constraints were not satisfied for the following sets of variables:"
249
+ msgstr ""
250
+
251
+ #: pyfemtet/_i18n/messages.py:115
252
+ msgid "Current parameter set cannot update FEM and this optimization method cannot skip current parameter set. The optimization process will be terminated."
253
+ msgstr ""
254
+
255
+ #: pyfemtet/_i18n/messages.py:116
256
+ msgid "Optimization has been interrupted. Note that you cannot acquire the OptimizationResult in case of `trust-constr`, `TNC`, `SLSQP` or `COBYLA`."
257
+ msgstr ""
258
+
259
+ #: pyfemtet/_i18n/messages.py:117
260
+ msgid "You can use parameter constraint only with BoTorchSampler."
261
+ msgstr ""
262
+
263
+ #: pyfemtet/_i18n/messages.py:118
264
+ msgid "Scipy is deterministic, so whether you set a seed or not will not change the results."
265
+ msgstr ""
266
+
267
+ #: pyfemtet/_i18n/messages.py:119
268
+ msgid "Start to candidate new parameter set with constraints. This process may take a long time."
269
+ msgstr ""
270
+
271
+ #: pyfemtet/_i18n/messages.py:120
272
+ msgid "Updating FEM parameter during evaluating constraints take a long time. Please consider not to use FEM variables in constraint functions and set `update_fem` to False."
273
+ msgstr ""
274
+
275
+ #: pyfemtet/_i18n/messages.py:126
276
+ #: pyfemtet/opt/optimizer/optuna_optimizer/_optuna_optimizer.py:470
277
+ #, python-brace-format
278
+ msgid "The given argument {key} is not included in ones of {sampler_name}. {key} is ignored."
279
+ msgstr ""
280
+
281
+ #: pyfemtet/_i18n/messages.py:134
282
+ msgid "Sometimes Nelder-Mead cannot start optimization with the initial condition what is same with lower bounds or upper bounds."
283
+ msgstr ""
284
+
285
+ #: pyfemtet/_i18n/messages.py:139
286
+ msgid "Cannot use categorical parameter with ScipyOptimizer"
287
+ msgstr ""
288
+
289
+ #: pyfemtet/_i18n/messages.py:142
290
+ msgid ""
291
+ "Hard constraint violation! scipy cannot continue optimization. Only `SLSQP` supports optimization with hard constraint optimization problem. If you see this message even if you are using it, please try to following:\n"
292
+ "- Use small `eps` by `options` argument.\n"
293
+ "- Set `constraint_enhancement`to the value that it larger than the variation of the constraint function when input variables within the range of `eps`."
294
+ msgstr ""
295
+
296
+ #: pyfemtet/_i18n/messages.py:162
297
+ msgid "ScipyOptimizer cannot continue optimization when encountered the input variables that break FEM model."
298
+ msgstr ""
299
+
300
+ #: pyfemtet/_i18n/messages.py:168
301
+ msgid "ScipyOptimizer cannot skip solve."
302
+ msgstr ""
303
+
304
+ #: pyfemtet/_i18n/messages.py:172
305
+ #, python-brace-format
306
+ msgid "{method} cannot handle hard constraint."
307
+ msgstr ""
308
+
309
+ #: pyfemtet/_i18n/messages.py:175
310
+ msgid "SLSQP cannot handle soft constraint. The constraint is handled as a hard one."
311
+ msgstr ""
312
+
313
+ #: pyfemtet/_i18n/messages.py:181
314
+ #: pyfemtet/opt/optimizer/optuna_optimizer/_pof_botorch/enable_nonlinear_constraint.py:72
315
+ msgid "Accessing FEM API inside hard constraint function may be very slow."
316
+ msgstr ""
317
+
318
+ #: pyfemtet/_i18n/messages.py:184
319
+ #: pyfemtet/opt/optimizer/optuna_optimizer/_pof_botorch/enable_nonlinear_constraint.py:211
320
+ msgid "gen_batch_initial_conditions() failed to generate feasible initial conditions for acquisition function optimization sub-problem, so trying to use random feasible parameters as initial conditions.The constraint functions or solutions spaces may be too complicated."
321
+ msgstr ""
322
+
323
+ #: pyfemtet/_i18n/messages.py:195
324
+ msgid "Connect to Femtet"
325
+ msgstr ""
326
+
327
+ #: pyfemtet/_i18n/messages.py:196
328
+ msgid "Analysis model name described in csv does not exist in project."
329
+ msgstr ""
330
+
331
+ #: pyfemtet/_i18n/messages.py:197
332
+ msgid "History csv is not read yet. Open your project manually."
333
+ msgstr ""
334
+
335
+ #: pyfemtet/_i18n/messages.py:198
336
+ msgid "Cannot read project data from csv. Open your project manually."
337
+ msgstr ""
338
+
339
+ #: pyfemtet/_i18n/messages.py:199
340
+ msgid ".femprj file described in csv is not found. Open your project manually."
341
+ msgstr ""
342
+
343
+ #: pyfemtet/_i18n/messages.py:200
344
+ msgid "Analysis model name is not specified. Open your model in the project manually."
345
+ msgstr ""
346
+
347
+ #: pyfemtet/_i18n/messages.py:202
348
+ msgid "Constraint"
349
+ msgstr ""
350
+
351
+ #: pyfemtet/_i18n/messages.py:203
352
+ msgid "feasible"
353
+ msgstr ""
354
+
355
+ #: pyfemtet/_i18n/messages.py:204
356
+ msgid "infeasible"
357
+ msgstr ""
358
+
359
+ #: pyfemtet/_i18n/messages.py:205
360
+ msgid "Optimality"
361
+ msgstr ""
362
+
363
+ #: pyfemtet/_i18n/messages.py:206
364
+ msgid "non dominated"
365
+ msgstr ""
366
+
367
+ #: pyfemtet/_i18n/messages.py:207
368
+ msgid "dominated"
369
+ msgstr ""
370
+
371
+ #: pyfemtet/_i18n/messages.py:208
372
+ msgid "Hypervolume Plot"
373
+ msgstr ""
374
+
375
+ #: pyfemtet/_i18n/messages.py:209
376
+ msgid "Objective Plot"
377
+ msgstr ""
378
+
379
+ #: pyfemtet/_i18n/messages.py:210
380
+ msgid "Multi Objective Pair Plot"
381
+ msgstr ""
382
+
383
+ #: pyfemtet/_i18n/messages.py:211
384
+ msgid "Succeeded trial number"
385
+ msgstr ""
386
+
387
+ #: pyfemtet/_i18n/messages.py:212
388
+ msgid "All solutions"
389
+ msgstr ""
390
+
391
+ #: pyfemtet/_i18n/messages.py:213
392
+ msgid "Transition of<br>optimal solutions"
393
+ msgstr ""
394
+
395
+ #: pyfemtet/_i18n/messages.py:214
396
+ msgid "Target value"
397
+ msgstr ""
398
+
399
+ #: pyfemtet/_i18n/messages.py:216
400
+ msgid "Objectives"
401
+ msgstr ""
402
+
403
+ #: pyfemtet/_i18n/messages.py:217
404
+ msgid "Objectives (all)"
405
+ msgstr ""
406
+
407
+ #: pyfemtet/_i18n/messages.py:219
408
+ #: pyfemtet/opt/visualization/plotter/pm_graph_creator.py:343
409
+ #: pyfemtet/opt/visualization/plotter/pm_graph_creator.py:350
410
+ msgid "Prediction Model"
411
+ msgstr ""
412
+
413
+ #: pyfemtet/_i18n/messages.py:220
414
+ msgid " Recalculate Model"
415
+ msgstr ""
416
+
417
+ #: pyfemtet/_i18n/messages.py:221
418
+ msgid " Redraw graph"
419
+ msgstr ""
420
+
421
+ #: pyfemtet/_i18n/messages.py:222
422
+ msgid "Parameter"
423
+ msgstr ""
424
+
425
+ #: pyfemtet/_i18n/messages.py:223
426
+ msgid "Parameter2"
427
+ msgstr ""
428
+
429
+ #: pyfemtet/_i18n/messages.py:224
430
+ msgid "Objective"
431
+ msgstr ""
432
+
433
+ #: pyfemtet/_i18n/messages.py:225
434
+ msgid "No history selected."
435
+ msgstr ""
436
+
437
+ #: pyfemtet/_i18n/messages.py:226
438
+ msgid "No FEM result (yet)."
439
+ msgstr ""
440
+
441
+ #: pyfemtet/_i18n/messages.py:227
442
+ msgid "Prediction model is not calculated yet."
443
+ msgstr ""
444
+
445
+ #: pyfemtet/_i18n/messages.py:228
446
+ msgid "Cannot select same parameter"
447
+ msgstr ""
448
+
449
+ #: pyfemtet/_i18n/messages.py:229
450
+ msgid "3D graph (two or more parameters required)"
451
+ msgstr ""
452
+
453
+ #: pyfemtet/_i18n/messages.py:231
454
+ msgid "Prediction Model of Objective"
455
+ msgstr ""
456
+
457
+ #: pyfemtet/_i18n/messages.py:232
458
+ msgid "prediction model"
459
+ msgstr ""
460
+
461
+ #: pyfemtet/_i18n/messages.py:233
462
+ msgid "std. dev. of model"
463
+ msgstr ""
464
+
465
+ #: pyfemtet/_i18n/messages.py:235
466
+ msgid "Progress"
467
+ msgstr ""
468
+
469
+ #: pyfemtet/_i18n/messages.py:236
470
+ #: pyfemtet/opt/visualization/plotter/pm_graph_creator.py:168
471
+ #: pyfemtet/opt/visualization/plotter/pm_graph_creator.py:193
472
+ msgid "Prediction"
473
+ msgstr ""
474
+
475
+ #: pyfemtet/_i18n/messages.py:237
476
+ msgid "Workers"
477
+ msgstr ""
478
+
479
+ #: pyfemtet/_i18n/messages.py:238
480
+ msgid "Details"
481
+ msgstr ""
482
+
483
+ #: pyfemtet/_i18n/messages.py:240
484
+ msgid "Optimization status will be shown here."
485
+ msgstr ""
486
+
487
+ #: pyfemtet/_i18n/messages.py:241
488
+ msgid "Auto-update graph"
489
+ msgstr ""
490
+
491
+ #: pyfemtet/_i18n/messages.py:242
492
+ msgid "Interrupt Optimization"
493
+ msgstr ""
494
+
495
+ #: pyfemtet/_i18n/messages.py:244
496
+ msgid "Result"
497
+ msgstr ""
498
+
499
+ #: pyfemtet/_i18n/messages.py:246
500
+ msgid "Open Result in Femtet"
501
+ msgstr ""
502
+
503
+ #: pyfemtet/_i18n/messages.py:247
504
+ msgid "Reconstruct Model"
505
+ msgstr ""
506
+
507
+ #: pyfemtet/_i18n/messages.py:248
508
+ msgid "Drag and drop or select csv file"
509
+ msgstr ""
510
+
511
+ #: pyfemtet/_i18n/messages.py:249
512
+ msgid "Connection to Femtet is not established. Launch Femtet and Open a project."
513
+ msgstr ""
514
+
515
+ #: pyfemtet/_i18n/messages.py:250
516
+ msgid "No result plot is selected."
517
+ msgstr ""
518
+
519
+ #: pyfemtet/_i18n/messages.py:251
520
+ msgid "The femprj file path in the history csv is not found or valid."
521
+ msgstr ""
522
+
523
+ #: pyfemtet/_i18n/messages.py:252
524
+ msgid "The model name in the history csv is not found."
525
+ msgstr ""
526
+
527
+ #: pyfemtet/_i18n/messages.py:253
528
+ msgid ".pdt file is not found. Please check the .Results folder. Note that .pdt file save mode depends on the `save_pdt` argument of FemtetInterface in optimization script(default to `all`)."
529
+ msgstr ""
530
+
531
+ #: pyfemtet/_i18n/messages.py:258
532
+ msgid "Failed to open "
533
+ msgstr ""
534
+
535
+ #: pyfemtet/_i18n/messages.py:259
536
+ msgid "Specified model is not in current project. Please check opened project. For example, not \"analysis model only\" but your .femprj file."
537
+ msgstr ""
538
+
539
+ #: pyfemtet/_i18n/messages.py:262
540
+ msgid ".femprj file path of the history csv is invalid. Please certify matching between csv and opening .femprj file."
541
+ msgstr ""
542
+
543
+ #: pyfemtet/_i18n/messages.py:263
544
+ msgid "Analysis model name of the history csv is invalid. Please certify matching between csv and opening analysis model."
545
+ msgstr ""
546
+
547
+ #: pyfemtet/_i18n/messages.py:264
548
+ msgid "Analysis model name of the history csv and opened in Femtet is inconsistent. Please certify matching between csv and opening analysis model."
549
+ msgstr ""
550
+
551
+ #: pyfemtet/_i18n/messages.py:265
552
+ msgid "tutorial mode"
553
+ msgstr ""
554
+
555
+ #: pyfemtet/_i18n/messages.py:266
556
+ msgid "Load Sample CSV"
557
+ msgstr ""
558
+
559
+ #: pyfemtet/_i18n/messages.py:267
560
+ msgid "Load CSV"
561
+ msgstr ""
562
+
563
+ #: pyfemtet/_i18n/messages.py:268
564
+ msgid "Open your optimization result. Then connecting to femtet will start automatically. Note that in tutorial mode, this button loads the ready-made sample csv and open sample femprj."
565
+ msgstr ""
566
+
567
+ #: pyfemtet/_i18n/messages.py:270
568
+ msgid "Main Graph"
569
+ msgstr ""
570
+
571
+ #: pyfemtet/_i18n/messages.py:271
572
+ msgid "Here the optimization history is shown. Each plot represents single FEM result. You can pick a result to open the corresponding result in Femtet. "
573
+ msgstr ""
574
+
575
+ #: pyfemtet/_i18n/messages.py:274
576
+ msgid "Open Result"
577
+ msgstr ""
578
+
579
+ #: pyfemtet/_i18n/messages.py:275
580
+ msgid "After pick a point in the main graph, This button shows the corresponding FEM result in Femtet."
581
+ msgstr ""
582
+
583
+ #: pyfemtet/_i18n/messages.py:277
584
+ msgid "Re-connect to Femtet."
585
+ msgstr ""
586
+
587
+ #: pyfemtet/_i18n/messages.py:278
588
+ msgid "Sample csv is not found. Please consider to re-install pyfemtet by `py -m pip install pyfemtet -U --force-reinstall`"
589
+ msgstr ""
590
+
591
+ #: pyfemtet/_i18n/messages.py:279
592
+ msgid "Sample femprj file is not found. Please consider to re-install pyfemtet by `py -m pip install pyfemtet -U --force-reinstall`"
593
+ msgstr ""
594
+
595
+ #: pyfemtet/_i18n/messages.py:280
596
+ msgid "Sample femprj result folder is not found. Please consider to re-install pyfemtet by `py -m pip install pyfemtet -U --force-reinstall`"
597
+ msgstr ""
598
+
599
+ #: pyfemtet/_i18n/messages.py:282
600
+ msgid "Loading data..."
601
+ msgstr ""
602
+
603
+ #: pyfemtet/_i18n/messages.py:283
604
+ msgid "Plots of objectives versus trials"
605
+ msgstr ""
606
+
607
+ #: pyfemtet/_i18n/messages.py:284
608
+ msgid "The vertical axis is the objective, and the horizontal axis is the number of trials."
609
+ msgstr ""
610
+
611
+ #: pyfemtet/_i18n/messages.py:285
612
+ msgid "Parallel coordinate plots"
613
+ msgstr ""
614
+
615
+ #: pyfemtet/_i18n/messages.py:286
616
+ msgid "The vertical axis is an objective or parameters, and one polyline indicates one result."
617
+ msgstr ""
618
+
619
+ #: pyfemtet/_i18n/messages.py:287
620
+ msgid "The heatmap of objectives"
621
+ msgstr ""
622
+
623
+ #: pyfemtet/_i18n/messages.py:288
624
+ msgid "The axes are parameters, and the color shows objective value."
625
+ msgstr ""
626
+
627
+ #: pyfemtet/_i18n/messages.py:289
628
+ msgid "The response of an objective versus one parameter"
629
+ msgstr ""
630
+
631
+ #: pyfemtet/_i18n/messages.py:290
632
+ msgid "The vertical axis is objective, and the horizontal axis is parameter."
633
+ msgstr ""
634
+
635
+ #: pyfemtet/_i18n/messages.py:291
636
+ msgid "The importance of parameters evaluated by fANOVA"
637
+ msgstr ""
638
+
639
+ #: pyfemtet/_i18n/messages.py:292
640
+ msgid "The normalized relative importance of parameters. Please note that the importance is calculated from the overall relationship of the input-output response, rather than from a specific solution."
641
+ msgstr ""
642
+
643
+ #: pyfemtet/_util/femtet_exit.py:48
644
+ #, python-brace-format
645
+ msgid "Femtet.Exit() does not finished in {timeout} sec. Most common reason is that a dialog is opening in Femtet and waiting user input. Please close the dialog if it exists."
646
+ msgstr ""
647
+
648
+ #: pyfemtet/_util/femtet_exit.py:70
649
+ msgid "Macro version is not consistent to the one of Femtet.exe. Please consider toexecute ``Enable Macros`` of current Femtet version to fix it."
650
+ msgstr ""
651
+
652
+ #: pyfemtet/_util/femtet_exit.py:91
653
+ msgid "Failed to close Femtet in 30 seconds."
654
+ msgstr ""
655
+
656
+ #: pyfemtet/_util/helper.py:48
657
+ #, python-brace-format
658
+ msgid "{name} does not finished in {timeout} seconds."
659
+ msgstr ""
660
+
661
+ #: pyfemtet/opt/femopt.py:194
662
+ #, python-brace-format
663
+ msgid "===== pyfemtet version {ver} ====="
664
+ msgstr ""
665
+
666
+ #: pyfemtet/opt/femopt.py:216
667
+ msgid "Launching processes..."
668
+ msgstr ""
669
+
670
+ #: pyfemtet/opt/femopt.py:223
671
+ msgid "Connecting cluster..."
672
+ msgstr ""
673
+
674
+ #: pyfemtet/opt/femopt.py:234
675
+ msgid "Launching threads..."
676
+ msgstr ""
677
+
678
+ #: pyfemtet/opt/femopt.py:248
679
+ msgid "Setting up..."
680
+ msgstr ""
681
+
682
+ #: pyfemtet/opt/femopt.py:277
683
+ msgid "Launching Monitor..."
684
+ msgstr ""
685
+
686
+ #: pyfemtet/opt/femopt.py:298
687
+ msgid "Setting up optimization problem..."
688
+ msgstr ""
689
+
690
+ #: pyfemtet/opt/femopt.py:347
691
+ #, python-brace-format
692
+ msgid "Cannot save history. The most common reason is that the csv is opened by another program (such as Excel). Please free {path} or lost the optimization history."
693
+ msgstr ""
694
+
695
+ #: pyfemtet/opt/femopt.py:381
696
+ msgid "Getting monitor host information is failed within 30 seconds. It can not be able to terminate by requesting POST `<host>:<port>/interrupt` by an external process."
697
+ msgstr ""
698
+
699
+ #: pyfemtet/opt/femopt.py:434
700
+ #, python-brace-format
701
+ msgid ""
702
+ "After the program ends, you can check the optimization results using the result viewer.\n"
703
+ "The result viewer can be launched by performing one of the following actions:\n"
704
+ "- (Windows only) Launch the `pyfemtet-opt-result-viewer` shortcut on your desktop if exists.\n"
705
+ "- (Windows only) Launch {path}.\n"
706
+ "- Execute \"py -m pyfemtet.opt.visualization.history_viewer\" in the command line"
707
+ msgstr ""
708
+
709
+ #: pyfemtet/opt/femopt.py:459
710
+ msgid "Press Enter to quit..."
711
+ msgstr ""
712
+
713
+ #: pyfemtet/opt/femopt.py:466
714
+ msgid "All processes are terminated."
715
+ msgstr ""
716
+
717
+ #: pyfemtet/opt/history/_history.py:299
718
+ #, python-brace-format
719
+ msgid "The name `{name}` is duplicated. Please use another name."
720
+ msgstr ""
721
+
722
+ #: pyfemtet/opt/history/_history.py:1002
723
+ #, python-brace-format
724
+ msgid "History csv file ({path}) is in use and cannot be written to. Please free this file before exiting the program, otherwise history data will be lost."
725
+ msgstr ""
726
+
727
+ #: pyfemtet/opt/interface/_excel_interface/excel_interface.py:412
728
+ #: pyfemtet/opt/interface/_excel_interface/excel_interface.py:901
729
+ #, python-brace-format
730
+ msgid "{procedure_kind} procedure {procedure_name} is running..."
731
+ msgstr ""
732
+
733
+ #: pyfemtet/opt/interface/_excel_interface/excel_interface.py:436
734
+ #: pyfemtet/opt/interface/_excel_interface/excel_interface.py:854
735
+ #: pyfemtet/opt/interface/_excel_interface/excel_interface.py:923
736
+ #, python-brace-format
737
+ msgid "Failed to run macro {procedure_name}. The original message is: {exception}"
738
+ msgstr ""
739
+
740
+ #: pyfemtet/opt/interface/_excel_interface/excel_interface.py:448
741
+ msgid "Launching and connecting to Microsoft Excel..."
742
+ msgstr ""
743
+
744
+ #: pyfemtet/opt/interface/_excel_interface/excel_interface.py:456
745
+ msgid "The connection to Excel is established."
746
+ msgstr ""
747
+
748
+ #: pyfemtet/opt/interface/_excel_interface/excel_interface.py:510
749
+ #, python-brace-format
750
+ msgid "Femtet XLA file not found: {xla_file_path}"
751
+ msgstr ""
752
+
753
+ #: pyfemtet/opt/interface/_excel_interface/excel_interface.py:756
754
+ #, python-brace-format
755
+ msgid "{xla_file_path} not found. Please check the \"Enable Macros\" command was executed."
756
+ msgstr ""
757
+
758
+ #: pyfemtet/opt/interface/_excel_interface/excel_interface.py:814
759
+ msgid "The cell address specification by named range is failed. The process changes the specification method to table based."
760
+ msgstr ""
761
+
762
+ #: pyfemtet/opt/interface/_femtet_interface/femtet_interface.py:235
763
+ #, python-brace-format
764
+ msgid "Closing Femtet (pid = {pid}) ..."
765
+ msgstr ""
766
+
767
+ #: pyfemtet/opt/interface/_femtet_interface/femtet_interface.py:239
768
+ msgid "Femtet is closed."
769
+ msgstr ""
770
+
771
+ #: pyfemtet/opt/interface/_femtet_interface/femtet_interface.py:524
772
+ #, python-brace-format
773
+ msgid "{name} does not finish in {warning_time_sec} seconds. If the optimization is hanging, the most reason is a dialog is opening in Femtet and it waits for your input. Please confirm there is no dialog in Femtet."
774
+ msgstr ""
775
+
776
+ #: pyfemtet/opt/interface/_femtet_with_nx_interface/femtet_with_nx_interface.py:40
777
+ msgid ""
778
+ "`run_journal.exe` is not found. Please check:\n"
779
+ "- NX is installed.\n"
780
+ "- The environment variable `UGII_BASE_DIR` is set.\n"
781
+ "- `<UGII_BASE_DIR>\\NXBIN\\run_journal.exe` exists.\n"
782
+ msgstr ""
783
+
784
+ #: pyfemtet/opt/interface/_femtet_with_solidworks/femtet_with_solidworks_interface.py:93
785
+ msgid "Failed to update Solidworks model."
786
+ msgstr ""
787
+
788
+ #: pyfemtet/opt/interface/_solidworks_interface/solidworks_interface.py:67
789
+ msgid "Failed to instantiate Solidworks. Please check installation and enabling macro."
790
+ msgstr ""
791
+
792
+ #: pyfemtet/opt/interface/_surrogate_model_interface/botorch_interface.py:255
793
+ #, python-brace-format
794
+ msgid "The surrogate model estimated that the probability of feasibility (PoF) is {pof}. This is under {thresh}. So this trial is processed as a constraint violation."
795
+ msgstr ""
796
+
797
+ #: pyfemtet/opt/optimizer/_base_optimizer.py:40
798
+ msgid "----- Hidden constraint violation! -----"
799
+ msgstr ""
800
+
801
+ #: pyfemtet/opt/optimizer/_base_optimizer.py:41
802
+ #, python-brace-format
803
+ msgid "error: {err_msg}"
804
+ msgstr ""
805
+
806
+ #: pyfemtet/opt/optimizer/_base_optimizer.py:51
807
+ #, python-brace-format
808
+ msgid "There are duplicated name {name}. If there are duplicate names for parameters or objective functions, the later defined ones will overwrite the earlier ones. Please be careful to ensure that this overwriting is intentional."
809
+ msgstr ""
810
+
811
+ #: pyfemtet/opt/optimizer/_base_optimizer.py:136
812
+ #, python-brace-format
813
+ msgid "Supported variable types are Real or str, got {type}"
814
+ msgstr ""
815
+
816
+ #: pyfemtet/opt/optimizer/_base_optimizer.py:275
817
+ msgid "`names` must be a string or an array of strings."
818
+ msgstr ""
819
+
820
+ #: pyfemtet/opt/optimizer/_base_optimizer.py:315
821
+ msgid "One of `lower_bound` and `upper_bound` should be set."
822
+ msgstr ""
823
+
824
+ #: pyfemtet/opt/optimizer/_base_optimizer.py:399
825
+ msgid "----- Hard constraint violation! -----"
826
+ msgstr ""
827
+
828
+ #: pyfemtet/opt/optimizer/_base_optimizer.py:400
829
+ #, python-brace-format
830
+ msgid "constraint: {name}"
831
+ msgstr ""
832
+
833
+ #: pyfemtet/opt/optimizer/_base_optimizer.py:401
834
+ #, python-brace-format
835
+ msgid "evaluated value: {value}"
836
+ msgstr ""
837
+
838
+ #: pyfemtet/opt/optimizer/_base_optimizer.py:403
839
+ #, python-brace-format
840
+ msgid "lower bound: {lb}"
841
+ msgstr ""
842
+
843
+ #: pyfemtet/opt/optimizer/_base_optimizer.py:406
844
+ #, python-brace-format
845
+ msgid "upper bound: {ub}"
846
+ msgstr ""
847
+
848
+ #: pyfemtet/opt/optimizer/_base_optimizer.py:493
849
+ #, python-brace-format
850
+ msgid "fidelity: ({name})"
851
+ msgstr ""
852
+
853
+ #: pyfemtet/opt/optimizer/_base_optimizer.py:494
854
+ msgid "input variables:"
855
+ msgstr ""
856
+
857
+ #: pyfemtet/opt/optimizer/_base_optimizer.py:498
858
+ msgid "updating variables..."
859
+ msgstr ""
860
+
861
+ #: pyfemtet/opt/optimizer/_base_optimizer.py:503
862
+ msgid "evaluating constraint functions..."
863
+ msgstr ""
864
+
865
+ #: pyfemtet/opt/optimizer/_base_optimizer.py:514
866
+ msgid "Hidden constraint violation during hard constraint function evaluation: "
867
+ msgstr ""
868
+
869
+ #: pyfemtet/opt/optimizer/_base_optimizer.py:528
870
+ msgid "Hard constraint violation: "
871
+ msgstr ""
872
+
873
+ #: pyfemtet/opt/optimizer/_base_optimizer.py:534
874
+ msgid "Solving FEM..."
875
+ msgstr ""
876
+
877
+ #: pyfemtet/opt/optimizer/_base_optimizer.py:549
878
+ msgid "Hidden constraint violation in FEM update: "
879
+ msgstr ""
880
+
881
+ #: pyfemtet/opt/optimizer/_base_optimizer.py:555
882
+ msgid "evaluating objective functions..."
883
+ msgstr ""
884
+
885
+ #: pyfemtet/opt/optimizer/_base_optimizer.py:569
886
+ msgid "Hidden constraint violation during objective function evaluation: "
887
+ msgstr ""
888
+
889
+ #: pyfemtet/opt/optimizer/_base_optimizer.py:576
890
+ msgid "evaluating remaining constraints..."
891
+ msgstr ""
892
+
893
+ #: pyfemtet/opt/optimizer/_base_optimizer.py:594
894
+ msgid "Hidden constraint violation during soft constraint function evaluation: "
895
+ msgstr ""
896
+
897
+ #: pyfemtet/opt/optimizer/_base_optimizer.py:608
898
+ msgid "output:"
899
+ msgstr ""
900
+
901
+ #: pyfemtet/opt/optimizer/_base_optimizer.py:728
902
+ #, python-brace-format
903
+ msgid "===== Exception raised in worker {worker_idx} ====="
904
+ msgstr ""
905
+
906
+ #: pyfemtet/opt/optimizer/_base_optimizer.py:736
907
+ #, python-brace-format
908
+ msgid "{name}: {exc_val}"
909
+ msgstr ""
910
+
911
+ #: pyfemtet/opt/optimizer/_base_optimizer.py:747
912
+ #, python-brace-format
913
+ msgid "worker `{worker}` started."
914
+ msgstr ""
915
+
916
+ #: pyfemtet/opt/optimizer/_base_optimizer.py:784
917
+ #, python-brace-format
918
+ msgid "worker `{worker}` successfully finished!"
919
+ msgstr ""
920
+
921
+ #: pyfemtet/opt/optimizer/scipy_optimizer/_scipy_optimizer.py:60
922
+ msgid "`ScipyOptimizer` cannot use timeout."
923
+ msgstr ""
924
+
925
+ #: pyfemtet/opt/optimizer/scipy_optimizer/_scipy_optimizer.py:72
926
+ msgid "`ScipyOptimizer` cannot use n_trials."
927
+ msgstr ""
928
+
929
+ #: pyfemtet/opt/optimizer/scipy_optimizer/_scipy_optimizer.py:86
930
+ msgid "Scipy can optimize only numerical parameters."
931
+ msgstr ""
932
+
933
+ #: pyfemtet/opt/problem/problem.py:168
934
+ #, python-brace-format
935
+ msgid "Index {i} is over n_return={n_return}."
936
+ msgstr ""
937
+
938
+ #: pyfemtet/opt/problem/problem.py:195
939
+ #, python-brace-format
940
+ msgid "The number of return values of {fun_name} is {n_values}. This is inconsistent with the specified n_return; {n_return}."
941
+ msgstr ""
942
+
943
+ #: pyfemtet/opt/problem/variable_manager/_variable_manager.py:187
944
+ #, python-brace-format
945
+ msgid "Missing arguments! The arguments specified by `args`: {var_args} / The arguments specified by `kwargs`: {var_kwargs} / Required arguments: {msg}"
946
+ msgstr ""
947
+
948
+ #: pyfemtet/opt/problem/variable_manager/_variable_manager.py:201
949
+ msgid "Extra positional argument name cannot be duplicated with a variable name."
950
+ msgstr ""
951
+
952
+ #: pyfemtet/opt/problem/variable_manager/_variable_manager.py:218
953
+ msgid "Extra keyword argument name cannot be duplicated with a variable name."
954
+ msgstr ""
955
+
956
+ #: pyfemtet/opt/problem/variable_manager/_variable_manager.py:290
957
+ #, python-brace-format
958
+ msgid "invalid format {format} is passed to VariableManager.get_variables(). Valid formats are one of (`raw`, `dict`, `values`)."
959
+ msgstr ""
960
+
961
+ #: pyfemtet/opt/visualization/history_viewer/_process_monitor/_pages.py:68
962
+ #, python-brace-format
963
+ msgid "Keep {y_or_xy} ranges"
964
+ msgstr ""
965
+
966
+ #: pyfemtet/opt/visualization/history_viewer/result_viewer/_pages.py:220
967
+ #, python-brace-format
968
+ msgid ".pdt file ({pdt_path}) is not found. Please check the .Results folder. Note that .pdt file save mode depends on the `save_pdt` argument of FemtetInterface in optimization script(default to `all`)."
969
+ msgstr ""
970
+
971
+ #: pyfemtet/opt/visualization/history_viewer/result_viewer/_pages.py:295
972
+ #, python-brace-format
973
+ msgid "Unknown error has occurred in analysis model compatibility check. Exception message: {e}"
974
+ msgstr ""
975
+
976
+ #: pyfemtet/opt/visualization/plotter/pm_graph_creator.py:146
977
+ msgid "Upper of pred. std-dev"
978
+ msgstr ""
979
+
980
+ #: pyfemtet/opt/visualization/plotter/pm_graph_creator.py:150
981
+ msgid "Lower of pred. std-dev"
982
+ msgstr ""
983
+
984
+ #: pyfemtet/opt/visualization/plotter/pm_graph_creator.py:183
985
+ msgid "Std-dev of pred."
986
+ msgstr ""
987
+