pyfemtet 0.9.6__py3-none-any.whl → 1.0.0__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 +46 -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 +103 -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 +621 -0
  31. pyfemtet/opt/history/__init__.py +11 -0
  32. pyfemtet/opt/history/_history.py +1416 -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 +997 -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} +508 -353
  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 +142 -0
  50. pyfemtet/opt/interface/_solidworks_interface/__init__.py +5 -0
  51. pyfemtet/opt/interface/_solidworks_interface/solidworks_interface.py +227 -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 +911 -0
  62. pyfemtet/opt/optimizer/optuna_optimizer/__init__.py +9 -0
  63. pyfemtet/opt/optimizer/optuna_optimizer/_optuna_attribute.py +63 -0
  64. pyfemtet/opt/optimizer/optuna_optimizer/_optuna_optimizer.py +796 -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 +383 -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.6.dist-info → pyfemtet-1.0.0.dist-info}/METADATA +23 -24
  151. pyfemtet-1.0.0.dist-info/RECORD +172 -0
  152. pyfemtet-1.0.0.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.6.dist-info/RECORD +0 -158
  259. pyfemtet-0.9.6.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.6.dist-info → pyfemtet-1.0.0.dist-info}/LICENSE +0 -0
  271. {pyfemtet-0.9.6.dist-info → pyfemtet-1.0.0.dist-info}/LICENSE_THIRD_PARTY.txt +0 -0
  272. {pyfemtet-0.9.6.dist-info → pyfemtet-1.0.0.dist-info}/WHEEL +0 -0
@@ -1,570 +0,0 @@
1
- # Japanese translations for PROJECT.
2
- # Copyright (C) 2024 ORGANIZATION
3
- # This file is distributed under the same license as the PROJECT project.
4
- # FIRST AUTHOR <EMAIL@ADDRESS>, 2024.
5
- #
6
- msgid ""
7
- msgstr ""
8
- "Project-Id-Version: PROJECT VERSION\n"
9
- "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
10
- "POT-Creation-Date: 2025-03-05 12:41+0900\n"
11
- "PO-Revision-Date: 2024-07-22 14:05+0900\n"
12
- "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
- "Language: ja\n"
14
- "Language-Team: ja <LL@li.org>\n"
15
- "Plural-Forms: nplurals=1; plural=0;\n"
16
- "MIME-Version: 1.0\n"
17
- "Content-Type: text/plain; charset=utf-8\n"
18
- "Content-Transfer-Encoding: 8bit\n"
19
- "Generated-By: Babel 2.17.0\n"
20
-
21
- #: pyfemtet/_message/messages.py:30
22
- msgid "hello!"
23
- msgstr "こんにちは!"
24
-
25
- #: pyfemtet/_message/messages.py:35
26
- msgid "Press enter to quit..."
27
- msgstr "終了するには Enter を押してください..."
28
-
29
- #: pyfemtet/_message/messages.py:38
30
- msgid "The magnitude relationship is incorrect."
31
- msgstr "大小関係が間違っています。"
32
-
33
- #: pyfemtet/_message/messages.py:39
34
- msgid "The direction of the objective function must be 'minimize', 'maximize' or a number. "
35
- msgstr "目的関数の方向は、\"minimize\"、\"maximize\"、または数値である必要があります。"
36
-
37
- #: pyfemtet/_message/messages.py:40
38
- msgid "The variable name, object name, or constraint name contains characters that cannot be encoded. Do not use environment-dependent characters."
39
- msgstr "変数名、目的関数名、または拘束関数名にエンコードできない文字が含まれています。環境依存の文字は使用しないでください。"
40
-
41
- #: pyfemtet/_message/messages.py:41
42
- msgid "The running configuration does not match the configuration in the csv file."
43
- msgstr "実行中の構成が csv ファイル内の構成と一致しません。"
44
-
45
- #: pyfemtet/_message/messages.py:44
46
- msgid "Please specify initial_value."
47
- msgstr "initial_value を指定してください。"
48
-
49
- #: pyfemtet/_message/messages.py:45
50
- 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."
51
- msgstr "拘束関数は FEM 解析が実行される前に評価されるため、Femtet.Gogh にアクセスしないでください。FEM 解析の実行後に拘束関数を評価する場合は、`strict` 引数を False に設定します。"
52
-
53
- #: pyfemtet/_message/messages.py:49
54
- msgid "History csv file is in use and cannot be written to. Please free this file before exiting the program, otherwise history data will be lost."
55
- msgstr "履歴 csv ファイルは使用中なので、書き込むことができません。最適化が終了する前にこのファイルを解放してください。そうしないと、履歴データが失われます。"
56
-
57
- #: pyfemtet/_message/messages.py:52
58
- msgid "Optimization finished. Results were saved in following:"
59
- msgstr "最適化が完了しました。結果は次の場所に保存されました:"
60
-
61
- #: pyfemtet/_message/messages.py:53
62
- msgid "No bounds specified."
63
- msgstr "上下限が指定されていません。"
64
-
65
- #: pyfemtet/_message/messages.py:54
66
- msgid "The optimization is now complete. You can view the results on the monitor until you press Enter to exit the program."
67
- msgstr "最適化が完了しました。Enter を押してプログラムを終了するまで、プロセスモニターで結果を確認することができます。"
68
-
69
- #: pyfemtet/_message/messages.py:57
70
- 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."
71
- msgstr "\"%UGII_BASE_DIR%\\NXBIN\\run_journal.exe\" ファイルが見つかりません。NX のインストールと UGII_BASE_DIR 環境変数が設定されていることを確認してください。"
72
-
73
- #: pyfemtet/_message/messages.py:58
74
- msgid "Model reconstruction failed."
75
- msgstr "モデル再構築に失敗しました。"
76
-
77
- #: pyfemtet/_message/messages.py:59
78
- msgid "Model update failed."
79
- msgstr "モデル更新に失敗しました。"
80
-
81
- #: pyfemtet/_message/messages.py:60
82
- 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."
83
- msgstr "Femtet マクロの定数の設定が未完了であることが検出され、設定コマンド(python -m win32com.client.makepy FemtetMacro)が自動実行されました。プログラムを再実行してください。もしエラーが解消されない場合は、コマンドプロンプトで「py -m win32com.client.makepy FemtetMacro」または「python -m win32com.client.makepy FemtetMacro」を実行してください。"
84
-
85
- #: pyfemtet/_message/messages.py:61
86
- msgid "Failed to connect to Femtet."
87
- msgstr "Femtet への接続に失敗しました。"
88
-
89
- #: pyfemtet/_message/messages.py:62
90
- msgid "The Femtet process crashed and could not be restarted successfully."
91
- msgstr "Femtet が予期せず停止し、再起動に失敗しました。"
92
-
93
- #: pyfemtet/_message/messages.py:63
94
- msgid "An abnormal termination of the Femtet process has been detected. Recovery will be attempted."
95
- msgstr "Femtet が予期せず停止したことが検出されました。状態の回復を試みます。"
96
-
97
- #: pyfemtet/_message/messages.py:64
98
- msgid "Femtet has been restarted and will perform analysis and attempt to recover."
99
- msgstr "Femtet は再実行されました。状態回復のため、FEM の再実行を行います。"
100
-
101
- #: pyfemtet/_message/messages.py:65
102
- msgid "If you specify 'new' as the 'connect_method' argument, set the 'femprj_path' argument to existing femprj file path."
103
- msgstr "'connect_method' 引数に 'new' をしている場合、'femprj_path' 引数に有効な .femprj ファイルパスを指定してください。"
104
-
105
- #: pyfemtet/_message/messages.py:66
106
- msgid "The specified variable is not included in the Femtet analysis model. Note the capitalization of the variable."
107
- msgstr "指定された変数は Femtet 解析モデルの中に設定されていません。変数の大文字・小文字の相違に注意してください。"
108
-
109
- #: pyfemtet/_message/messages.py:67
110
- msgid "The following APIs are not accessible: "
111
- msgstr "以下の API にアクセスできませんでした。"
112
-
113
- #: pyfemtet/_message/messages.py:68
114
- 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."
115
- msgstr "マクロのバージョンがインストールされている Femtet のバージョンと異なる可能性があります。利用中の Femtet のバージョンのフォルダに含まれる「マクロ機能を有効化する」コマンドを管理者権限で実行してください。"
116
-
117
- #: pyfemtet/_message/messages.py:69
118
- msgid "No analysis model is open"
119
- msgstr "解析モデルが開かれていません。"
120
-
121
- #: pyfemtet/_message/messages.py:70
122
- msgid "The analysis model does not contain any variables."
123
- msgstr "解析モデルに変数が設定されていません。"
124
-
125
- #: pyfemtet/_message/messages.py:71
126
- msgid "Failed to update variables:"
127
- msgstr "変数の更新に失敗しました:"
128
-
129
- #: pyfemtet/_message/messages.py:72
130
- msgid "The specified variable is not included in the analysis model and will be ignored."
131
- msgstr "指定された変数は解析モデルに含まれていないので、無視されます。"
132
-
133
- #: pyfemtet/_message/messages.py:73
134
- msgid "Model history re-execute failed."
135
- msgstr "モデル履歴の再実行に失敗しました。"
136
-
137
- #: pyfemtet/_message/messages.py:74
138
- msgid "Model redraw failed."
139
- msgstr "モデルの再描画に失敗しました。"
140
-
141
- #: pyfemtet/_message/messages.py:75
142
- msgid "Mesh generation failed"
143
- msgstr "メッシュ生成に失敗しました。"
144
-
145
- #: pyfemtet/_message/messages.py:76
146
- msgid "Parametric solve failed"
147
- msgstr "パラメトリック解析に失敗しました。"
148
-
149
- #: pyfemtet/_message/messages.py:77
150
- msgid "Solve failed."
151
- msgstr "解析に失敗しました。"
152
-
153
- #: pyfemtet/_message/messages.py:78
154
- msgid "Open result failed."
155
- msgstr "結果ファイルが開けませんでした。"
156
-
157
- #: pyfemtet/_message/messages.py:79
158
- msgid "Failed to close Femtet."
159
- msgstr "Femtet を終了できませんでした。"
160
-
161
- #: pyfemtet/_message/messages.py:80
162
- msgid "Failed to save result (.pdt) file."
163
- msgstr "結果(.pdt)ファイルの保存に失敗しました。"
164
-
165
- #: pyfemtet/_message/messages.py:81
166
- msgid "Failed to save screenshot (.jpg)."
167
- msgstr "スクリーンショットの保存に失敗しました。"
168
-
169
- #: pyfemtet/_message/messages.py:82
170
- msgid "Screenshot (.jpg) is not found."
171
- msgstr "スクリーンショットファイルが見つかりませんでした。"
172
-
173
- #: pyfemtet/_message/messages.py:83
174
- msgid "Failed to update model in solidworks."
175
- msgstr "Solidworks でのモデル更新に失敗しました。"
176
-
177
- #: pyfemtet/_message/messages.py:84
178
- msgid "Probability of feasibility is less than threshold."
179
- msgstr "解析が可能で拘束を満たす予測確率が 0.5 を下回りました。"
180
-
181
- #: pyfemtet/_message/messages.py:85
182
- msgid "Terminating Excel process..."
183
- msgstr ""
184
-
185
- #: pyfemtet/_message/messages.py:86
186
- msgid "Excel process is terminated."
187
- msgstr ""
188
-
189
- #: pyfemtet/_message/messages.py:87
190
- msgid "Restore Femtet setting of autosave."
191
- msgstr "Femtet の自動保存設定を元に戻します。"
192
-
193
- #: pyfemtet/_message/messages.py:88
194
- msgid "Failed to make output from Femtet. Please check output settings of Parametric Analysis."
195
- msgstr "パラメトリック解析結果出力に失敗しました。結果出力設定を確認してください。"
196
-
197
- #: pyfemtet/_message/messages.py:92
198
- msgid "The following features are not supported by the specified optimization method. "
199
- msgstr "以下の機能は現在の最適化手法では利用できません。"
200
-
201
- #: pyfemtet/_message/messages.py:93
202
- msgid "The parameter set does not match the one added with add_init_parameter."
203
- msgstr "変数の組合せが add_init_parameter で与えられた変数の組合せと一致しません。"
204
-
205
- #: pyfemtet/_message/messages.py:94
206
- msgid "An exception has occurred during FEM update. Current parameters are: "
207
- msgstr "FEM 解析中に例外が発生しました。現在の変数の組合せは以下の通りです。"
208
-
209
- #: pyfemtet/_message/messages.py:95
210
- msgid "The constraints were not satisfied for the following sets of variables:"
211
- msgstr "以下の変数の組合せで拘束が満たされませんでした。"
212
-
213
- #: pyfemtet/_message/messages.py:96
214
- msgid "Current parameter set cannot update FEM and this optimization method cannot skip current parameter set. The optimization process will be terminated."
215
- msgstr "現在の変数の組合せで FEM 解析を行うことができません。現在の最適化手法では変数の組合せをスキップすることができません。最適化プログラムは停止されます。"
216
-
217
- #: pyfemtet/_message/messages.py:97
218
- msgid "Optimization has been interrupted. Note that you cannot acquire the OptimizationResult in case of `trust-constr`, `TNC`, `SLSQP` or `COBYLA`."
219
- msgstr "最適化が中断されました。`trust-constr`, `TNC`, `SLSQP` 又は `COBYLA` メソッドを使っている場合は、OptimizationResult オブジェクトが取得できないことに注意してください。"
220
-
221
- #: pyfemtet/_message/messages.py:98
222
- msgid "You can use parameter constraint only with BoTorchSampler."
223
- msgstr "BoTorchSampler でのみパラメーター制約を使用できます。"
224
-
225
- #: pyfemtet/_message/messages.py:99
226
- msgid "Scipy is deterministic, so whether you set a seed or not will not change the results."
227
- msgstr ""
228
-
229
- #: pyfemtet/_message/messages.py:100
230
- msgid "Start to candidate new parameter set with constraints. This process may take a long time."
231
- msgstr ""
232
-
233
- #: pyfemtet/_message/messages.py:101
234
- 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."
235
- msgstr ""
236
-
237
- #: pyfemtet/_message/messages.py:105
238
- msgid "Connect to Femtet"
239
- msgstr "Femtet に接続する"
240
-
241
- #: pyfemtet/_message/messages.py:106
242
- msgid "Analysis model name described in csv does not exist in project."
243
- msgstr "履歴 csv ファイルに記載されている解析モデル名はプロジェクトに含まれていません。"
244
-
245
- #: pyfemtet/_message/messages.py:107
246
- msgid "History csv is not read yet. Open your project manually."
247
- msgstr "履歴 csv が読み込まれていません。目的のプロジェクトを手動で開いてください。"
248
-
249
- #: pyfemtet/_message/messages.py:108
250
- msgid "Cannot read project data from csv. Open your project manually."
251
- msgstr "履歴 csv ファイルからプロジェクトに関するデータを読み込めませんでした。目的のプロジェクトを手動で開いてください。"
252
-
253
- #: pyfemtet/_message/messages.py:109
254
- msgid ".femprj file described in csv is not found. Open your project manually."
255
- msgstr "履歴 csv ファイルに記載されているプロジェクトファイルが見つかりませんでした。目的のプロジェクトを手動で開いてください。"
256
-
257
- #: pyfemtet/_message/messages.py:110
258
- msgid "Analysis model name is not specified. Open your model in the project manually."
259
- msgstr "解析モデル名が指定されていません。目的の解析モデルをプロジェクト内で手動で開いてください。"
260
-
261
- #: pyfemtet/_message/messages.py:112
262
- msgid "Constraint"
263
- msgstr "拘束条件"
264
-
265
- #: pyfemtet/_message/messages.py:113
266
- msgid "feasible"
267
- msgstr "満たす"
268
-
269
- #: pyfemtet/_message/messages.py:114
270
- msgid "infeasible"
271
- msgstr "満たさない"
272
-
273
- #: pyfemtet/_message/messages.py:115
274
- msgid "Optimality"
275
- msgstr "最適性"
276
-
277
- #: pyfemtet/_message/messages.py:116
278
- msgid "non dominated"
279
- msgstr "適"
280
-
281
- #: pyfemtet/_message/messages.py:117
282
- msgid "dominated"
283
- msgstr "不適"
284
-
285
- #: pyfemtet/_message/messages.py:118
286
- msgid "Hypervolume Plot"
287
- msgstr "Hypervolume プロット"
288
-
289
- #: pyfemtet/_message/messages.py:119
290
- msgid "Objective Plot"
291
- msgstr "目的関数プロット"
292
-
293
- #: pyfemtet/_message/messages.py:120
294
- msgid "Multi Objective Pair Plot"
295
- msgstr "目的関数ペアプロット"
296
-
297
- #: pyfemtet/_message/messages.py:121
298
- msgid "Succeeded trial number"
299
- msgstr "成功した解析数"
300
-
301
- #: pyfemtet/_message/messages.py:122
302
- msgid "All solutions"
303
- msgstr "すべての解"
304
-
305
- #: pyfemtet/_message/messages.py:123
306
- msgid "Transition of<br>optimal solutions"
307
- msgstr "最適解の推移"
308
-
309
- #: pyfemtet/_message/messages.py:124
310
- msgid "Target value"
311
- msgstr "ターゲット値"
312
-
313
- #: pyfemtet/_message/messages.py:126
314
- msgid "Objectives"
315
- msgstr "目的関数"
316
-
317
- #: pyfemtet/_message/messages.py:127
318
- msgid "Objectives (all)"
319
- msgstr "全ての目的関数"
320
-
321
- #: pyfemtet/_message/messages.py:129
322
- msgid "Prediction Model"
323
- msgstr "予測モデル"
324
-
325
- #: pyfemtet/_message/messages.py:130
326
- msgid " Recalculate Model"
327
- msgstr " 予測モデルの再計算"
328
-
329
- #: pyfemtet/_message/messages.py:131
330
- msgid " Redraw graph"
331
- msgstr " 描画の更新"
332
-
333
- #: pyfemtet/_message/messages.py:132
334
- msgid "Parameter"
335
- msgstr "変数"
336
-
337
- #: pyfemtet/_message/messages.py:133
338
- msgid "Parameter2"
339
- msgstr "変数2"
340
-
341
- #: pyfemtet/_message/messages.py:134
342
- msgid "Objective"
343
- msgstr "目的関数"
344
-
345
- #: pyfemtet/_message/messages.py:135
346
- msgid "No history selected."
347
- msgstr "履歴 csv が選択されていません。"
348
-
349
- #: pyfemtet/_message/messages.py:136
350
- msgid "No FEM result (yet)."
351
- msgstr "FEM 解析結果が(まだ)存在しません。"
352
-
353
- #: pyfemtet/_message/messages.py:137
354
- msgid "Prediction model is not calculated yet."
355
- msgstr "予測モデルがまだ計算されていません。"
356
-
357
- #: pyfemtet/_message/messages.py:138
358
- msgid "Cannot select same parameter"
359
- msgstr "同じ変数を設定できません。"
360
-
361
- #: pyfemtet/_message/messages.py:139
362
- msgid "3D graph (two or more parameters required)"
363
- msgstr "3D (2 つ以上の設計変数が必要です)"
364
-
365
- #: pyfemtet/_message/messages.py:141
366
- msgid "Prediction Model of Objective"
367
- msgstr "目的関数に対する予測モデル"
368
-
369
- #: pyfemtet/_message/messages.py:142
370
- msgid "prediction model"
371
- msgstr "モデルによる予測値"
372
-
373
- #: pyfemtet/_message/messages.py:143
374
- msgid "std. dev. of model"
375
- msgstr "予測値の標準偏差"
376
-
377
- #: pyfemtet/_message/messages.py:145
378
- msgid "Progress"
379
- msgstr "進捗"
380
-
381
- #: pyfemtet/_message/messages.py:146
382
- msgid "Prediction"
383
- msgstr "予測"
384
-
385
- #: pyfemtet/_message/messages.py:147
386
- msgid "Workers"
387
- msgstr "並列プロセス"
388
-
389
- #: pyfemtet/_message/messages.py:148
390
- msgid "Details"
391
- msgstr "詳細分析"
392
-
393
- #: pyfemtet/_message/messages.py:150
394
- msgid "Optimization status will be shown here."
395
- msgstr "最適化の状態がここに表示されます。"
396
-
397
- #: pyfemtet/_message/messages.py:151
398
- msgid "Auto-update graph"
399
- msgstr "グラフの自動更新"
400
-
401
- #: pyfemtet/_message/messages.py:152
402
- msgid "Interrupt Optimization"
403
- msgstr "最適化を中断する"
404
-
405
- #: pyfemtet/_message/messages.py:154
406
- msgid "Result"
407
- msgstr "結果"
408
-
409
- #: pyfemtet/_message/messages.py:156
410
- msgid "Open Result in Femtet"
411
- msgstr "Femtet で結果を開く"
412
-
413
- #: pyfemtet/_message/messages.py:157
414
- msgid "Reconstruct Model"
415
- msgstr "モデルの再構築"
416
-
417
- #: pyfemtet/_message/messages.py:158
418
- msgid "Drag and drop or select csv file"
419
- msgstr "履歴 csv をドラッグ&ドロップ"
420
-
421
- #: pyfemtet/_message/messages.py:159
422
- msgid "Connection to Femtet is not established. Launch Femtet and Open a project."
423
- msgstr "Femtet との接続ができていません。Femtet を起動し、プロジェクトを開いてください。"
424
-
425
- #: pyfemtet/_message/messages.py:160
426
- msgid "No result plot is selected."
427
- msgstr "グラフ上で結果プロットが選択されていません。"
428
-
429
- #: pyfemtet/_message/messages.py:161
430
- msgid "The femprj file path in the history csv is not found or valid."
431
- msgstr "履歴 csv に記載の femprj ファイルが見つからないか不正です。"
432
-
433
- #: pyfemtet/_message/messages.py:162
434
- msgid "The model name in the history csv is not found."
435
- msgstr "履歴 csv に記載の解析モデル名が見つかりませんでした。"
436
-
437
- #: pyfemtet/_message/messages.py:163
438
- 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`)."
439
- msgstr "結果(.pdt)ファイルが見つかりませんでした。.Result フォルダ内を確認してください。.pdt ファイルが作成されるかどうかは最適化スクリプトの FemtetInterface の引数 `save_pdt` の挙動に左右されることに注意してください(デフォルトは `all`, すべての trial の結果が保存されます)。"
440
-
441
- #: pyfemtet/_message/messages.py:168
442
- msgid "Failed to open "
443
- msgstr "以下のファイルが開けません: "
444
-
445
- #: pyfemtet/_message/messages.py:169
446
- msgid "Specified model is not in current project. Please check opened project. For example, not \"analysis model only\" but your .femprj file."
447
- msgstr "指定された解析モデルは現在のプロジェクトに含まれていません。現在開かれているプロジェクトが正しいか確認してください。例えば、「解析結果単体」の画面になっていないことを確認してください。"
448
-
449
- #: pyfemtet/_message/messages.py:172
450
- msgid ".femprj file path of the history csv is invalid. Please certify matching between csv and opening .femprj file."
451
- msgstr "履歴 csv に記載のプロジェクトファイルのパスが不正です。現在開かれているプロジェクトファイルと履歴 csv に記載のプロジェクトファイルのパスが一致することを確認してください。"
452
-
453
- #: pyfemtet/_message/messages.py:173
454
- msgid "Analysis model name of the history csv is invalid. Please certify matching between csv and opening analysis model."
455
- msgstr "履歴 csv に記載の解析モデル名が不正です。現在開かれている解析モデル名と履歴 csv に記載の解析モデル名が一致することを確認してください。"
456
-
457
- #: pyfemtet/_message/messages.py:174
458
- msgid "Analysis model name of the history csv and opened in Femtet is inconsistent. Please certify matching between csv and opening analysis model."
459
- msgstr "履歴 csv に記載の解析モデル名と Femtet で開かれている解析モデル名が一致しません。"
460
-
461
- #: pyfemtet/_message/messages.py:175
462
- msgid "tutorial mode"
463
- msgstr "チュートリアルモード"
464
-
465
- #: pyfemtet/_message/messages.py:176
466
- msgid "Load Sample CSV"
467
- msgstr "サンプル履歴 CSV 読み込み"
468
-
469
- #: pyfemtet/_message/messages.py:177
470
- msgid "Load CSV"
471
- msgstr "履歴 CSV 読み込み"
472
-
473
- #: pyfemtet/_message/messages.py:178
474
- 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."
475
- msgstr "最適化を実行した結果生成される csv ファイル(履歴 csv)を開きます。その後、Femtet の起動・接続が自動的に行われます。チュートリアルモードではこのボタンを押すと自動的に用意されたサンプルファイルが開きます。"
476
-
477
- #: pyfemtet/_message/messages.py:180
478
- msgid "Main Graph"
479
- msgstr "メイングラフ"
480
-
481
- #: pyfemtet/_message/messages.py:181
482
- 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. "
483
- msgstr "ここに最適化の履歴が表示されます。プロットの 1 個の点が 1 個の変数の組合せに対する FEM 解析結果を示します。グラフ中の結果ファイルを選択し、Femtet で対応する結果ファイルを開くことができます。"
484
-
485
- #: pyfemtet/_message/messages.py:184
486
- msgid "Open Result"
487
- msgstr "結果を開く"
488
-
489
- #: pyfemtet/_message/messages.py:185
490
- msgid "After pick a point in the main graph, This button shows the corresponding FEM result in Femtet."
491
- msgstr "メイングラフで点を選択した後でこのボタンを押すと、対応する FEM 解析結果が Femtet で開かれます。"
492
-
493
- #: pyfemtet/_message/messages.py:187
494
- msgid "Re-connect to Femtet."
495
- msgstr "手動で Femtet と接続します。"
496
-
497
- #: pyfemtet/_message/messages.py:188
498
- msgid "Sample csv is not found. Please consider to re-install pyfemtet by `py -m pip install pyfemtet -U --force-reinstall`"
499
- msgstr "サンプル履歴 csv が見つかりませんでした。以下のコマンドで pyfemtet の再インストールを検討して下さい。 `py -m pip install pyfemtet -U --force-reinstall`"
500
-
501
- #: pyfemtet/_message/messages.py:189
502
- msgid "Sample femprj file is not found. Please consider to re-install pyfemtet by `py -m pip install pyfemtet -U --force-reinstall`"
503
- msgstr "サンプルプロジェクトファイルが見つかりませんでした。以下のコマンドで pyfemtet の再インストールを検討して下さい。 `py -m pip install pyfemtet -U --force-reinstall`"
504
-
505
- #: pyfemtet/_message/messages.py:190
506
- msgid "Sample femprj result folder is not found. Please consider to re-install pyfemtet by `py -m pip install pyfemtet -U --force-reinstall`"
507
- msgstr "サンプル結果フォルダが見つかりませんでした。以下のコマンドで pyfemtet の再インストールを検討して下さい。 `py -m pip install pyfemtet -U --force-reinstall`"
508
-
509
- #: pyfemtet/_message/messages.py:192
510
- msgid "Loading data..."
511
- msgstr ""
512
-
513
- #: pyfemtet/_message/messages.py:193
514
- msgid "Plots of objectives versus trials"
515
- msgstr "試行回数に対する各目的関数のプロット"
516
-
517
- #: pyfemtet/_message/messages.py:194
518
- msgid "The vertical axis is the objective, and the horizontal axis is the number of trials."
519
- msgstr "縦軸は目的関数、横軸は試行回数です。"
520
-
521
- #: pyfemtet/_message/messages.py:195
522
- msgid "Parallel coordinate plots"
523
- msgstr "並行座標プロット"
524
-
525
- #: pyfemtet/_message/messages.py:196
526
- msgid "The vertical axis is an objective or parameters, and one polyline indicates one result."
527
- msgstr "縦軸は目的関数及び各設計変数、折れ線ひとつはひとつの試行に対応します。"
528
-
529
- #: pyfemtet/_message/messages.py:197
530
- msgid "The heatmap of objectives"
531
- msgstr "目的関数のヒートマップ"
532
-
533
- #: pyfemtet/_message/messages.py:198
534
- msgid "The axes are parameters, and the color shows objective value."
535
- msgstr "軸は設計変数、色は目的関数の値を示します。"
536
-
537
- #: pyfemtet/_message/messages.py:199
538
- msgid "The response of an objective versus one parameter"
539
- msgstr "ひとつの設計変数に対する目的関数の変化"
540
-
541
- #: pyfemtet/_message/messages.py:200
542
- msgid "The vertical axis is objective, and the horizontal axis is parameter."
543
- msgstr "縦軸は目的関数、横軸は設計変数です。"
544
-
545
- #: pyfemtet/_message/messages.py:201
546
- msgid "The importance of parameters evaluated by fANOVA"
547
- msgstr "fANOVA に基づくパラメータ重要度"
548
-
549
- #: pyfemtet/_message/messages.py:202
550
- 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."
551
- msgstr "相対的なパラメータの重要度です。この重要度は特定の解におけるものではなく、入力-出力応答全体の関係から計算されていることに注意してください。"
552
-
553
- #~ msgid "The magnitude relationship is incorrect. "
554
- #~ msgstr ""
555
-
556
- #~ msgid "Constraint functions are evaluated before analysis is performed, constraints to include values after analysis is performed, set the `strict` argument to True."
557
- #~ msgstr ""
558
-
559
- #~ msgid "Please free this file before exiting the program, otherwise history data will be lost."
560
- #~ msgstr ""
561
-
562
- #~ msgid "You can use parameter constraint only with BoTorchSampler."
563
- #~ msgstr "BoTorchSampler でのみパラメーター制約を使用できます。"
564
-
565
- #~ msgid "Probability of feasibility is lessa than threshold."
566
- #~ msgstr ""
567
-
568
- #~ msgid "Restore Femtet setting of auatosave."
569
- #~ msgstr ""
570
-