pyfemtet 0.9.4__py3-none-any.whl → 1.0.0a0__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 -19
  29. pyfemtet/opt/exceptions.py +45 -0
  30. pyfemtet/opt/femopt.py +602 -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} +490 -348
  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/_base.py +0 -129
  53. pyfemtet/opt/interface/_surrogate_model_interface/__init__.py +8 -0
  54. pyfemtet/opt/interface/_surrogate_model_interface/base_surrogate_interface.py +59 -0
  55. pyfemtet/opt/interface/_surrogate_model_interface/botorch_interface.py +271 -0
  56. pyfemtet/opt/interface/_surrogate_model_interface/debug-pof-botorch.reccsv +18 -0
  57. pyfemtet/opt/interface/_with_excel_settings/__init__.py +61 -0
  58. pyfemtet/opt/interface/_with_excel_settings/with_excel_settings.py +134 -0
  59. pyfemtet/opt/meta_script/YAML_Generator.xlsm +0 -0
  60. pyfemtet/opt/meta_script/__main__.py +58 -36
  61. pyfemtet/opt/optimizer/__init__.py +7 -9
  62. pyfemtet/opt/optimizer/_base_optimizer.py +876 -0
  63. pyfemtet/opt/optimizer/optuna_optimizer/__init__.py +9 -0
  64. pyfemtet/opt/optimizer/optuna_optimizer/_optuna_attribute.py +73 -0
  65. pyfemtet/opt/optimizer/optuna_optimizer/_optuna_optimizer.py +678 -0
  66. pyfemtet/opt/optimizer/optuna_optimizer/_pof_botorch/__init__.py +7 -0
  67. pyfemtet/opt/optimizer/optuna_optimizer/_pof_botorch/debug-pof-botorch.reccsv +18 -0
  68. pyfemtet/opt/optimizer/optuna_optimizer/_pof_botorch/enable_nonlinear_constraint.py +244 -0
  69. pyfemtet/opt/optimizer/optuna_optimizer/_pof_botorch/pof_botorch_sampler.py +1249 -0
  70. pyfemtet/opt/optimizer/optuna_optimizer/wat_ex14_parametric_jp.femprj +0 -0
  71. pyfemtet/opt/optimizer/scipy_optimizer/__init__.py +1 -0
  72. pyfemtet/opt/optimizer/scipy_optimizer/_scipy_optimizer.py +364 -0
  73. pyfemtet/opt/prediction/__init__.py +7 -0
  74. pyfemtet/opt/prediction/_botorch_utils.py +133 -0
  75. pyfemtet/opt/prediction/_gpytorch_modules_extension.py +142 -0
  76. pyfemtet/opt/prediction/_helper.py +155 -0
  77. pyfemtet/opt/prediction/_model.py +118 -0
  78. pyfemtet/opt/problem/problem.py +304 -0
  79. pyfemtet/opt/problem/variable_manager/__init__.py +20 -0
  80. pyfemtet/opt/problem/variable_manager/_string_as_expression.py +115 -0
  81. pyfemtet/opt/problem/variable_manager/_variable_manager.py +295 -0
  82. pyfemtet/opt/visualization/history_viewer/__main__.py +5 -0
  83. pyfemtet/opt/visualization/{_base.py → history_viewer/_base_application.py} +18 -13
  84. pyfemtet/opt/visualization/history_viewer/_common_pages.py +150 -0
  85. pyfemtet/opt/visualization/{_complex_components → history_viewer/_complex_components}/alert_region.py +10 -5
  86. pyfemtet/opt/visualization/{_complex_components → history_viewer/_complex_components}/control_femtet.py +16 -13
  87. pyfemtet/opt/visualization/{_complex_components → history_viewer/_complex_components}/main_graph.py +117 -47
  88. pyfemtet/opt/visualization/{_complex_components → history_viewer/_complex_components}/pm_graph.py +159 -138
  89. pyfemtet/opt/visualization/history_viewer/_process_monitor/_application.py +173 -0
  90. pyfemtet/opt/visualization/history_viewer/_process_monitor/_pages.py +291 -0
  91. pyfemtet/opt/visualization/{_wrapped_components → history_viewer/_wrapped_components}/dbc.py +1 -1
  92. pyfemtet/opt/visualization/{_wrapped_components → history_viewer/_wrapped_components}/dcc.py +1 -1
  93. pyfemtet/opt/visualization/{_wrapped_components → history_viewer/_wrapped_components}/html.py +1 -1
  94. pyfemtet/opt/visualization/history_viewer/result_viewer/__main__.py +5 -0
  95. pyfemtet/opt/visualization/{result_viewer/application.py → history_viewer/result_viewer/_application.py} +6 -6
  96. pyfemtet/opt/visualization/{result_viewer/pages.py → history_viewer/result_viewer/_pages.py} +106 -82
  97. pyfemtet/opt/visualization/history_viewer/result_viewer/tutorial_files/tutorial_gau_ex08.csv +18 -0
  98. pyfemtet/opt/visualization/history_viewer/result_viewer/tutorial_files/tutorial_gau_ex08.db +0 -0
  99. pyfemtet/opt/visualization/history_viewer/result_viewer/tutorial_files/tutorial_gau_ex08_parametric.Results/ex8.jpg +0 -0
  100. pyfemtet/opt/visualization/history_viewer/result_viewer/tutorial_files/tutorial_gau_ex08_parametric.Results/ex8.log +45 -0
  101. pyfemtet/opt/visualization/history_viewer/result_viewer/tutorial_files/tutorial_gau_ex08_parametric.Results/ex8.pdt +0 -0
  102. pyfemtet/opt/visualization/history_viewer/result_viewer/tutorial_files/tutorial_gau_ex08_parametric.Results/ex8_trial_1.jpg +0 -0
  103. pyfemtet/opt/visualization/history_viewer/result_viewer/tutorial_files/tutorial_gau_ex08_parametric.Results/ex8_trial_1.pdt +0 -0
  104. pyfemtet/opt/visualization/history_viewer/result_viewer/tutorial_files/tutorial_gau_ex08_parametric.Results/ex8_trial_10.jpg +0 -0
  105. pyfemtet/opt/visualization/history_viewer/result_viewer/tutorial_files/tutorial_gau_ex08_parametric.Results/ex8_trial_10.pdt +0 -0
  106. pyfemtet/opt/visualization/history_viewer/result_viewer/tutorial_files/tutorial_gau_ex08_parametric.Results/ex8_trial_11.jpg +0 -0
  107. pyfemtet/opt/visualization/history_viewer/result_viewer/tutorial_files/tutorial_gau_ex08_parametric.Results/ex8_trial_11.pdt +0 -0
  108. pyfemtet/opt/visualization/history_viewer/result_viewer/tutorial_files/tutorial_gau_ex08_parametric.Results/ex8_trial_12.jpg +0 -0
  109. pyfemtet/opt/visualization/history_viewer/result_viewer/tutorial_files/tutorial_gau_ex08_parametric.Results/ex8_trial_12.pdt +0 -0
  110. pyfemtet/opt/visualization/history_viewer/result_viewer/tutorial_files/tutorial_gau_ex08_parametric.Results/ex8_trial_13.jpg +0 -0
  111. pyfemtet/opt/visualization/history_viewer/result_viewer/tutorial_files/tutorial_gau_ex08_parametric.Results/ex8_trial_13.pdt +0 -0
  112. pyfemtet/opt/visualization/history_viewer/result_viewer/tutorial_files/tutorial_gau_ex08_parametric.Results/ex8_trial_14.jpg +0 -0
  113. pyfemtet/opt/visualization/history_viewer/result_viewer/tutorial_files/tutorial_gau_ex08_parametric.Results/ex8_trial_14.pdt +0 -0
  114. pyfemtet/opt/visualization/history_viewer/result_viewer/tutorial_files/tutorial_gau_ex08_parametric.Results/ex8_trial_15.jpg +0 -0
  115. pyfemtet/opt/visualization/history_viewer/result_viewer/tutorial_files/tutorial_gau_ex08_parametric.Results/ex8_trial_15.pdt +0 -0
  116. pyfemtet/opt/visualization/history_viewer/result_viewer/tutorial_files/tutorial_gau_ex08_parametric.Results/ex8_trial_16.jpg +0 -0
  117. pyfemtet/opt/visualization/history_viewer/result_viewer/tutorial_files/tutorial_gau_ex08_parametric.Results/ex8_trial_16.pdt +0 -0
  118. pyfemtet/opt/visualization/history_viewer/result_viewer/tutorial_files/tutorial_gau_ex08_parametric.Results/ex8_trial_17.jpg +0 -0
  119. pyfemtet/opt/visualization/history_viewer/result_viewer/tutorial_files/tutorial_gau_ex08_parametric.Results/ex8_trial_17.pdt +0 -0
  120. pyfemtet/opt/visualization/history_viewer/result_viewer/tutorial_files/tutorial_gau_ex08_parametric.Results/ex8_trial_18.jpg +0 -0
  121. pyfemtet/opt/visualization/history_viewer/result_viewer/tutorial_files/tutorial_gau_ex08_parametric.Results/ex8_trial_18.pdt +0 -0
  122. pyfemtet/opt/visualization/history_viewer/result_viewer/tutorial_files/tutorial_gau_ex08_parametric.Results/ex8_trial_19.jpg +0 -0
  123. pyfemtet/opt/visualization/history_viewer/result_viewer/tutorial_files/tutorial_gau_ex08_parametric.Results/ex8_trial_19.pdt +0 -0
  124. pyfemtet/opt/visualization/history_viewer/result_viewer/tutorial_files/tutorial_gau_ex08_parametric.Results/ex8_trial_2.jpg +0 -0
  125. pyfemtet/opt/visualization/history_viewer/result_viewer/tutorial_files/tutorial_gau_ex08_parametric.Results/ex8_trial_2.pdt +0 -0
  126. pyfemtet/opt/visualization/history_viewer/result_viewer/tutorial_files/tutorial_gau_ex08_parametric.Results/ex8_trial_20.jpg +0 -0
  127. pyfemtet/opt/visualization/history_viewer/result_viewer/tutorial_files/tutorial_gau_ex08_parametric.Results/ex8_trial_20.pdt +0 -0
  128. pyfemtet/opt/visualization/history_viewer/result_viewer/tutorial_files/tutorial_gau_ex08_parametric.Results/ex8_trial_3.jpg +0 -0
  129. pyfemtet/opt/visualization/history_viewer/result_viewer/tutorial_files/tutorial_gau_ex08_parametric.Results/ex8_trial_3.pdt +0 -0
  130. pyfemtet/opt/visualization/history_viewer/result_viewer/tutorial_files/tutorial_gau_ex08_parametric.Results/ex8_trial_4.bgr +0 -0
  131. pyfemtet/opt/visualization/history_viewer/result_viewer/tutorial_files/tutorial_gau_ex08_parametric.Results/ex8_trial_4.bnd +0 -0
  132. pyfemtet/opt/visualization/history_viewer/result_viewer/tutorial_files/tutorial_gau_ex08_parametric.Results/ex8_trial_4.btr +0 -0
  133. pyfemtet/opt/visualization/history_viewer/result_viewer/tutorial_files/tutorial_gau_ex08_parametric.Results/ex8_trial_4.jpg +0 -0
  134. pyfemtet/opt/visualization/history_viewer/result_viewer/tutorial_files/tutorial_gau_ex08_parametric.Results/ex8_trial_4.mtl +0 -0
  135. pyfemtet/opt/visualization/history_viewer/result_viewer/tutorial_files/tutorial_gau_ex08_parametric.Results/ex8_trial_4.pdt +0 -0
  136. pyfemtet/opt/visualization/history_viewer/result_viewer/tutorial_files/tutorial_gau_ex08_parametric.Results/ex8_trial_4.prm +0 -0
  137. pyfemtet/opt/visualization/history_viewer/result_viewer/tutorial_files/tutorial_gau_ex08_parametric.Results/ex8_trial_5.jpg +0 -0
  138. pyfemtet/opt/visualization/history_viewer/result_viewer/tutorial_files/tutorial_gau_ex08_parametric.Results/ex8_trial_5.pdt +0 -0
  139. pyfemtet/opt/visualization/history_viewer/result_viewer/tutorial_files/tutorial_gau_ex08_parametric.Results/ex8_trial_6.jpg +0 -0
  140. pyfemtet/opt/visualization/history_viewer/result_viewer/tutorial_files/tutorial_gau_ex08_parametric.Results/ex8_trial_6.pdt +0 -0
  141. pyfemtet/opt/visualization/history_viewer/result_viewer/tutorial_files/tutorial_gau_ex08_parametric.Results/ex8_trial_7.jpg +0 -0
  142. pyfemtet/opt/visualization/history_viewer/result_viewer/tutorial_files/tutorial_gau_ex08_parametric.Results/ex8_trial_7.pdt +0 -0
  143. pyfemtet/opt/visualization/history_viewer/result_viewer/tutorial_files/tutorial_gau_ex08_parametric.Results/ex8_trial_8.jpg +0 -0
  144. pyfemtet/opt/visualization/history_viewer/result_viewer/tutorial_files/tutorial_gau_ex08_parametric.Results/ex8_trial_8.pdt +0 -0
  145. pyfemtet/opt/visualization/history_viewer/result_viewer/tutorial_files/tutorial_gau_ex08_parametric.Results/ex8_trial_9.jpg +0 -0
  146. pyfemtet/opt/visualization/history_viewer/result_viewer/tutorial_files/tutorial_gau_ex08_parametric.Results/ex8_trial_9.pdt +0 -0
  147. pyfemtet/opt/visualization/history_viewer/result_viewer/tutorial_files/tutorial_gau_ex08_parametric.femprj +0 -0
  148. pyfemtet/opt/visualization/plotter/main_figure_creator.py +536 -0
  149. pyfemtet/opt/visualization/plotter/pm_graph_creator.py +359 -0
  150. pyfemtet/opt/worker_status.py +120 -0
  151. {pyfemtet-0.9.4.dist-info → pyfemtet-1.0.0a0.dist-info}/METADATA +22 -24
  152. pyfemtet-1.0.0a0.dist-info/RECORD +173 -0
  153. pyfemtet-1.0.0a0.dist-info/entry_points.txt +3 -0
  154. pyfemtet/_femtet_config_util/exit.py +0 -59
  155. pyfemtet/_message/1. make_pot.bat +0 -11
  156. pyfemtet/_message/2. make_mo.bat +0 -6
  157. pyfemtet/_message/__init__.py +0 -5
  158. pyfemtet/_message/babel.cfg +0 -2
  159. pyfemtet/_message/locales/ja/LC_MESSAGES/messages.mo +0 -0
  160. pyfemtet/_message/locales/ja/LC_MESSAGES/messages.po +0 -570
  161. pyfemtet/_message/locales/messages.pot +0 -551
  162. pyfemtet/_warning.py +0 -87
  163. pyfemtet/brep/_impl.py +0 -18
  164. pyfemtet/opt/_femopt.py +0 -1007
  165. pyfemtet/opt/_femopt_core.py +0 -1169
  166. pyfemtet/opt/_test_utils/control_femtet.py +0 -39
  167. pyfemtet/opt/_test_utils/hyper_sphere.py +0 -24
  168. pyfemtet/opt/_test_utils/record_history.py +0 -130
  169. pyfemtet/opt/advanced_samples/excel_ui/(ref) original_project.femprj +0 -0
  170. pyfemtet/opt/advanced_samples/excel_ui/femtet-macro.xlsm +0 -0
  171. pyfemtet/opt/advanced_samples/excel_ui/pyfemtet-core.py +0 -291
  172. pyfemtet/opt/advanced_samples/excel_ui/test-pyfemtet-core.cmd +0 -22
  173. pyfemtet/opt/advanced_samples/restart/gal_ex13_parametric.femprj +0 -0
  174. pyfemtet/opt/advanced_samples/restart/gal_ex13_parametric_restart.py +0 -99
  175. pyfemtet/opt/advanced_samples/restart/gal_ex13_parametric_restart_jp.py +0 -102
  176. pyfemtet/opt/advanced_samples/surrogate_model/gal_ex13_create_training_data.py +0 -60
  177. pyfemtet/opt/advanced_samples/surrogate_model/gal_ex13_create_training_data_jp.py +0 -57
  178. pyfemtet/opt/advanced_samples/surrogate_model/gal_ex13_optimize_with_surrogate.py +0 -100
  179. pyfemtet/opt/advanced_samples/surrogate_model/gal_ex13_optimize_with_surrogate_jp.py +0 -90
  180. pyfemtet/opt/advanced_samples/surrogate_model/gal_ex13_parametric.femprj +0 -0
  181. pyfemtet/opt/interface/_base.py +0 -101
  182. pyfemtet/opt/interface/_excel_interface.py +0 -984
  183. pyfemtet/opt/interface/_femtet_excel.py +0 -141
  184. pyfemtet/opt/interface/_femtet_with_nx/__init__.py +0 -3
  185. pyfemtet/opt/interface/_femtet_with_nx/_interface.py +0 -178
  186. pyfemtet/opt/interface/_femtet_with_sldworks.py +0 -298
  187. pyfemtet/opt/interface/_surrogate/__init__.py +0 -5
  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.4.dist-info/RECORD +0 -158
  259. pyfemtet-0.9.4.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.4.dist-info → pyfemtet-1.0.0a0.dist-info}/LICENSE +0 -0
  271. {pyfemtet-0.9.4.dist-info → pyfemtet-1.0.0a0.dist-info}/LICENSE_THIRD_PARTY.txt +0 -0
  272. {pyfemtet-0.9.4.dist-info → pyfemtet-1.0.0a0.dist-info}/WHEEL +0 -0
@@ -0,0 +1,1020 @@
1
+ # Japanese translations 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
+ msgid ""
7
+ msgstr ""
8
+ "Project-Id-Version: PROJECT VERSION\n"
9
+ "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
10
+ "POT-Creation-Date: 2025-05-20 11:58+0900\n"
11
+ "PO-Revision-Date: 2025-04-09 00:48+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/core.py:9
22
+ 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."
23
+ msgstr "バージョン1.0以降、Errorクラスのインポート方法が変更されました。`from pyfemtet.core import ModelError` のようなインポートを `from pyfemtet.opt.exceptions import ModelError` に変更してください。詳細については https://pyfemtet.readthedocs.io/en/stable/pages/migration_to_v1.html をご参照ください。"
24
+
25
+ #: pyfemtet/_i18n/messages.py:6
26
+ msgid "Hello!"
27
+ msgstr "こんにちは!"
28
+
29
+ #: pyfemtet/_i18n/messages.py:9
30
+ msgid "Press enter to quit..."
31
+ msgstr "終了するには Enter キーを押してください..."
32
+
33
+ #: pyfemtet/_i18n/messages.py:10
34
+ msgid "constraint"
35
+ msgstr "拘束"
36
+
37
+ #: pyfemtet/_i18n/messages.py:11
38
+ msgid "hidden constraint"
39
+ msgstr "隠れた拘束"
40
+
41
+ #: pyfemtet/_i18n/messages.py:14
42
+ msgid "Waiting for launch femtet..."
43
+ msgstr "femtet の起動待ち..."
44
+
45
+ #: pyfemtet/_i18n/messages.py:15
46
+ msgid "Trying to connect Femtet..."
47
+ msgstr "Femtet に接続中..."
48
+
49
+ #: pyfemtet/_i18n/messages.py:20
50
+ #, python-brace-format
51
+ msgid "Successfully connected. The pid of Femtet is {pid}."
52
+ msgstr "正常に接続されました。FemtetのPIDは{pid}です。"
53
+
54
+ #: pyfemtet/_i18n/messages.py:27
55
+ #, python-brace-format
56
+ msgid "Searching Femtet (pid = {pid}) ..."
57
+ msgstr "Femtet (pid = {pid}) を探しています・・・"
58
+
59
+ #: pyfemtet/_i18n/messages.py:34
60
+ #, python-brace-format
61
+ msgid "Connection to Femtet (pid = {pid}) was notestablished in {timeout} sec"
62
+ msgstr "Femtet への接続(pid = {pid})は{timeout}秒以内に確立されませんでした"
63
+
64
+ #: pyfemtet/_i18n/messages.py:41
65
+ msgid "The magnitude relationship is incorrect."
66
+ msgstr "大きさの関係が正しくありません。"
67
+
68
+ #: pyfemtet/_i18n/messages.py:42
69
+ msgid "The direction of the objective function must be 'minimize', 'maximize' or a number. "
70
+ msgstr "目的関数の方向は「minimize」か「maximize」、または数値で指定してください。"
71
+
72
+ #: pyfemtet/_i18n/messages.py:43
73
+ msgid "The variable name, object name, or constraint name contains characters that cannot be encoded. Do not use environment-dependent characters."
74
+ msgstr "変数名、オブジェクト名、または拘束名にエンコードできない文字が含まれています。環境依存の文字は使用しないでください。"
75
+
76
+ #: pyfemtet/_i18n/messages.py:44
77
+ msgid "The running configuration does not match the configuration in the csv file."
78
+ msgstr "現在の設定はcsvファイルの設定と一致していません。"
79
+
80
+ #: pyfemtet/_i18n/messages.py:47
81
+ msgid "Please specify initial_value."
82
+ msgstr "initial_value を指定してください。"
83
+
84
+ #: pyfemtet/_i18n/messages.py:49
85
+ 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."
86
+ msgstr "拘束関数は解析を実行する前に評価されるため、Femtet.Gogh にアクセスしないでください。解析実行後の値を拘束に含めたい場合は、`strict` 引数を False に設定してください。"
87
+
88
+ #: pyfemtet/_i18n/messages.py:54
89
+ msgid "Optimization finished. Results were saved in following:"
90
+ msgstr "最適化が終了しました。結果は以下に保存されました:"
91
+
92
+ #: pyfemtet/_i18n/messages.py:55
93
+ msgid "No bounds specified."
94
+ msgstr "境界条件が指定されていません。"
95
+
96
+ #: pyfemtet/_i18n/messages.py:56 pyfemtet/opt/femopt.py:426
97
+ msgid "The optimization is now complete. You can view the results on the monitor until you press Enter to exit the program."
98
+ msgstr "最適化が完了しました。Enterキーを押してプログラムを終了するまで、モニターで結果を確認できます。"
99
+
100
+ #: pyfemtet/_i18n/messages.py:59
101
+ 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."
102
+ msgstr "\"%UGII_BASE_DIR%\\NXBIN\\run_journal.exe\" が見つかりません。NX がインストールされており、環境変数 UGII_BASE_DIR が設定されていることを確認してください。"
103
+
104
+ #: pyfemtet/_i18n/messages.py:60
105
+ msgid "Model reconstruction failed."
106
+ msgstr "モデル再構築に失敗しました。"
107
+
108
+ #: pyfemtet/_i18n/messages.py:61
109
+ msgid "Model update failed."
110
+ msgstr "モデルの更新に失敗しました。"
111
+
112
+ #: pyfemtet/_i18n/messages.py:62
113
+ #: pyfemtet/opt/interface/_femtet_interface/femtet_interface.py:358
114
+ 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."
115
+ msgstr "Femtet の python マクロ定数の設定が完了していないことが検出されました。設定は自動的に行われました(python -m win32com.client.makepy FemtetMacro)。プログラムを再起動してください。エラーが続く場合は、コマンドプロンプトで「py -m win32com.client.makepy FemtetMacro」または「python -m win32com.client.makepy FemtetMacro」を実行してください。"
116
+
117
+ #: pyfemtet/_i18n/messages.py:63
118
+ #: pyfemtet/opt/interface/_femtet_interface/femtet_interface.py:385
119
+ msgid "Failed to connect to Femtet."
120
+ msgstr "Femtet への接続に失敗しました。"
121
+
122
+ #: pyfemtet/_i18n/messages.py:68
123
+ #, python-brace-format
124
+ msgid "The Femtet process crashed and Python failed to restore Femtet. API: {name}"
125
+ msgstr "Femtet プロセスがクラッシュし、Python が Femtet を復元できませんでした。API: {name}"
126
+
127
+ #: pyfemtet/_i18n/messages.py:77
128
+ #, python-brace-format
129
+ msgid "An abnormal termination of the Femtet process has been detected. Recovery will be attempted. API: {name}"
130
+ msgstr "Femtetプロセスの異常終了が検出されました。リカバリを試みます。API: {name}"
131
+
132
+ #: pyfemtet/_i18n/messages.py:83
133
+ msgid "Femtet has been restarted and will perform analysis and attempt to recover."
134
+ msgstr "Femtetが再起動され、解析を実行して復旧を試みます。"
135
+
136
+ #: pyfemtet/_i18n/messages.py:84
137
+ msgid "If you specify 'new' as the 'connect_method' argument, set the 'femprj_path' argument to existing femprj file path."
138
+ msgstr "'connect_method' 引数に 'new' を指定する場合は、'femprj_path' 引数に既存の femprj ファイルのパスを設定してください。"
139
+
140
+ #: pyfemtet/_i18n/messages.py:85
141
+ msgid "The specified variable is not included in the Femtet analysis model. Note the capitalization of the variable."
142
+ msgstr "指定された変数はFemtet解析モデルに含まれていません。変数の大文字・小文字に注意してください。"
143
+
144
+ #: pyfemtet/_i18n/messages.py:86
145
+ msgid "The following APIs are not accessible: "
146
+ msgstr "以下のAPIにはアクセスできません:"
147
+
148
+ #: pyfemtet/_i18n/messages.py:87
149
+ 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."
150
+ msgstr "インストールされている Femtet のバージョンではマクロが有効になっていない可能性があります。インストールされている同じバージョンの Femtet を管理者権限で起動し、スタートメニューから「Enable Macros」コマンドを実行してください。"
151
+
152
+ #: pyfemtet/_i18n/messages.py:88
153
+ msgid "No analysis model is open"
154
+ msgstr "解析モデルが開かれていません"
155
+
156
+ #: pyfemtet/_i18n/messages.py:89
157
+ msgid "The analysis model does not contain any variables."
158
+ msgstr "解析モデルに変数が含まれていません。"
159
+
160
+ #: pyfemtet/_i18n/messages.py:90
161
+ msgid "Failed to update variables:"
162
+ msgstr "変数の更新に失敗しました:"
163
+
164
+ #: pyfemtet/_i18n/messages.py:91
165
+ msgid "The specified variable is not included in the analysis model and will be ignored."
166
+ msgstr "指定された変数は解析モデルに含まれておらず、無視されます。"
167
+
168
+ #: pyfemtet/_i18n/messages.py:92
169
+ msgid "Model history re-execute failed."
170
+ msgstr "モデル履歴の再実行に失敗しました。"
171
+
172
+ #: pyfemtet/_i18n/messages.py:93
173
+ msgid "Model redraw failed."
174
+ msgstr "モデルの再描画に失敗しました。"
175
+
176
+ #: pyfemtet/_i18n/messages.py:94
177
+ msgid "Mesh generation failed"
178
+ msgstr "メッシュ生成に失敗しました"
179
+
180
+ #: pyfemtet/_i18n/messages.py:95
181
+ msgid "Parametric solve failed"
182
+ msgstr "パラメトリック解析に失敗しました"
183
+
184
+ #: pyfemtet/_i18n/messages.py:96
185
+ msgid "Solve failed."
186
+ msgstr "解析に失敗しました。"
187
+
188
+ #: pyfemtet/_i18n/messages.py:97
189
+ msgid "Failed to open result."
190
+ msgstr "結果を開くことに失敗しました。"
191
+
192
+ #: pyfemtet/_i18n/messages.py:98
193
+ #: pyfemtet/opt/interface/_femtet_interface/femtet_interface.py:241
194
+ msgid "Failed to close Femtet."
195
+ msgstr "Femtet を終了できませんでした。"
196
+
197
+ #: pyfemtet/_i18n/messages.py:99
198
+ msgid "Failed to save result (.pdt) file."
199
+ msgstr "結果ファイル(.pdt)の保存に失敗しました。"
200
+
201
+ #: pyfemtet/_i18n/messages.py:100
202
+ msgid "Failed to save screenshot (.jpg)."
203
+ msgstr "スクリーンショット(.jpg)の保存に失敗しました。"
204
+
205
+ #: pyfemtet/_i18n/messages.py:101
206
+ msgid "Screenshot (.jpg) is not found."
207
+ msgstr "スクリーンショット(.jpg)が見つかりません。"
208
+
209
+ #: pyfemtet/_i18n/messages.py:102
210
+ msgid "Failed to update model in solidworks."
211
+ msgstr "SolidWorks でモデルの更新に失敗しました。"
212
+
213
+ #: pyfemtet/_i18n/messages.py:103
214
+ msgid "Probability of feasibility is less than threshold."
215
+ msgstr "実行可能性の確率がしきい値未満です。"
216
+
217
+ #: pyfemtet/_i18n/messages.py:104
218
+ #: pyfemtet/opt/interface/_excel_interface/excel_interface.py:936
219
+ msgid "Terminating Excel process..."
220
+ msgstr "Excel プロセスを終了しています..."
221
+
222
+ #: pyfemtet/_i18n/messages.py:105
223
+ #: pyfemtet/opt/interface/_excel_interface/excel_interface.py:955
224
+ msgid "Excel process is terminated."
225
+ msgstr "Excel のプロセスが終了しました。"
226
+
227
+ #: pyfemtet/_i18n/messages.py:106
228
+ #: pyfemtet/opt/interface/_excel_interface/excel_interface.py:961
229
+ msgid "Restore Femtet setting of autosave."
230
+ msgstr "autosave の Femtet 設定を復元します。"
231
+
232
+ #: pyfemtet/_i18n/messages.py:107
233
+ msgid "Failed to make output from Femtet. Please check output settings of Parametric Analysis."
234
+ msgstr "Femtetからの出力の作成に失敗しました。パラメトリック解析の出力設定を確認してください。"
235
+
236
+ #: pyfemtet/_i18n/messages.py:111
237
+ msgid "The following features are not supported by the specified optimization method. "
238
+ msgstr "指定された最適化手法では、次の機能はサポートされていません。"
239
+
240
+ #: pyfemtet/_i18n/messages.py:112
241
+ msgid "The parameter set does not match the one added with add_init_parameter."
242
+ msgstr "パラメータセットがadd_init_parameterで追加されたものと一致しません。"
243
+
244
+ #: pyfemtet/_i18n/messages.py:113
245
+ msgid "An exception has occurred during FEM update. Current parameters are: "
246
+ msgstr "FEM 更新中に例外が発生しました。現在のパラメータは:"
247
+
248
+ #: pyfemtet/_i18n/messages.py:114
249
+ msgid "The constraints were not satisfied for the following sets of variables:"
250
+ msgstr "以下の変数セットで拘束が満たされませんでした:"
251
+
252
+ #: pyfemtet/_i18n/messages.py:115
253
+ msgid "Current parameter set cannot update FEM and this optimization method cannot skip current parameter set. The optimization process will be terminated."
254
+ msgstr "現在のパラメータセットでは FEM を更新できません。また、この最適化手法は現在のパラメータセットをスキップできません。最適化処理を終了します。"
255
+
256
+ #: pyfemtet/_i18n/messages.py:116
257
+ msgid "Optimization has been interrupted. Note that you cannot acquire the OptimizationResult in case of `trust-constr`, `TNC`, `SLSQP` or `COBYLA`."
258
+ msgstr "最適化は中断されました。`trust-constr`、`TNC`、`SLSQP`、または`COBYLA`の場合、OptimizationResultを取得できないことに注意してください。"
259
+
260
+ #: pyfemtet/_i18n/messages.py:117
261
+ msgid "You can use parameter constraint only with BoTorchSampler."
262
+ msgstr "パラメータ拘束はBoTorchSamplerでのみ使用できます。"
263
+
264
+ #: pyfemtet/_i18n/messages.py:118
265
+ msgid "Scipy is deterministic, so whether you set a seed or not will not change the results."
266
+ msgstr "Scipyは決定論的であるため、シードを設定してもしなくても結果は変わりません。"
267
+
268
+ #: pyfemtet/_i18n/messages.py:119
269
+ msgid "Start to candidate new parameter set with constraints. This process may take a long time."
270
+ msgstr "拘束付きの新しいパラメータセットの候補作成を開始します。この処理には時間がかかることがあります。"
271
+
272
+ #: pyfemtet/_i18n/messages.py:120
273
+ 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."
274
+ msgstr "拘束評価中の FEM パラメータの更新には時間がかかります。拘束関数で FEM 変数を使用せず、`update_fem` を False に設定することを検討してください。"
275
+
276
+ #: pyfemtet/_i18n/messages.py:126
277
+ #: pyfemtet/opt/optimizer/optuna_optimizer/_optuna_optimizer.py:470
278
+ #, python-brace-format
279
+ msgid "The given argument {key} is not included in ones of {sampler_name}. {key} is ignored."
280
+ msgstr "指定された引数 {key} は {sampler_name} のいずれにも含まれていません。{key} は無視されます。"
281
+
282
+ #: pyfemtet/_i18n/messages.py:134
283
+ msgid "Sometimes Nelder-Mead cannot start optimization with the initial condition what is same with lower bounds or upper bounds."
284
+ msgstr "初期条件が下限または上限と同じ場合、Nelder-Mead は最適化を開始できないことがあります。"
285
+
286
+ #: pyfemtet/_i18n/messages.py:139
287
+ msgid "Cannot use categorical parameter with ScipyOptimizer"
288
+ msgstr "ScipyOptimizer でカテゴリパラメータは使用できません"
289
+
290
+ #: pyfemtet/_i18n/messages.py:142
291
+ msgid ""
292
+ "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"
293
+ "- Use small `eps` by `options` argument.\n"
294
+ "- Set `constraint_enhancement`to the value that it larger than the variation of the constraint function when input variables within the range of `eps`."
295
+ msgstr ""
296
+
297
+ #: pyfemtet/_i18n/messages.py:162
298
+ msgid "ScipyOptimizer cannot continue optimization when encountered the input variables that break FEM model."
299
+ msgstr "ScipyOptimizer は FEM モデルを破損する入力変数に遭遇した場合、最適化を継続できません。"
300
+
301
+ #: pyfemtet/_i18n/messages.py:168
302
+ msgid "ScipyOptimizer cannot skip solve."
303
+ msgstr "ScipyOptimizer は解析をスキップできません。"
304
+
305
+ #: pyfemtet/_i18n/messages.py:172
306
+ #, python-brace-format
307
+ msgid "{method} cannot handle hard constraint."
308
+ msgstr "{method} はハード拘束を扱うことができません。"
309
+
310
+ #: pyfemtet/_i18n/messages.py:175
311
+ msgid "SLSQP cannot handle soft constraint. The constraint is handled as a hard one."
312
+ msgstr "SLSQPはソフト拘束を扱えません。拘束はハード拘束として扱われます。"
313
+
314
+ #: pyfemtet/_i18n/messages.py:181
315
+ #: pyfemtet/opt/optimizer/optuna_optimizer/_pof_botorch/enable_nonlinear_constraint.py:72
316
+ msgid "Accessing FEM API inside hard constraint function may be very slow."
317
+ msgstr "ハード拘束関数内で FEM API にアクセスすると非常に遅くなる可能性があります。"
318
+
319
+ #: pyfemtet/_i18n/messages.py:184
320
+ #: pyfemtet/opt/optimizer/optuna_optimizer/_pof_botorch/enable_nonlinear_constraint.py:211
321
+ 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."
322
+ msgstr "gen_batch_initial_conditions() は取得関数最適化のサブ問題の実行可能な初期条件を生成できなかったため、ランダムな実行可能パラメータを初期条件として使用しようとしています。拘束関数または解空間が複雑すぎる可能性があります。"
323
+
324
+ #: pyfemtet/_i18n/messages.py:195
325
+ msgid "Connect to Femtet"
326
+ msgstr "Femtet に接続"
327
+
328
+ #: pyfemtet/_i18n/messages.py:196
329
+ msgid "Analysis model name described in csv does not exist in project."
330
+ msgstr "csv に記載されている解析モデル名がプロジェクト内に存在しません。"
331
+
332
+ #: pyfemtet/_i18n/messages.py:197
333
+ msgid "History csv is not read yet. Open your project manually."
334
+ msgstr "履歴 csv はまだ読み込まれていません。プロジェクトを手動で開いてください。"
335
+
336
+ #: pyfemtet/_i18n/messages.py:198
337
+ msgid "Cannot read project data from csv. Open your project manually."
338
+ msgstr "csvからプロジェクトデータを読み取れません。プロジェクトを手動で開いてください。"
339
+
340
+ #: pyfemtet/_i18n/messages.py:199
341
+ msgid ".femprj file described in csv is not found. Open your project manually."
342
+ msgstr "csvで記述された.femprjファイルが見つかりません。プロジェクトを手動で開いてください。"
343
+
344
+ #: pyfemtet/_i18n/messages.py:200
345
+ msgid "Analysis model name is not specified. Open your model in the project manually."
346
+ msgstr "解析モデル名が指定されていません。プロジェクト内でモデルを手動で開いてください。"
347
+
348
+ #: pyfemtet/_i18n/messages.py:202
349
+ msgid "Constraint"
350
+ msgstr "拘束"
351
+
352
+ #: pyfemtet/_i18n/messages.py:203
353
+ msgid "feasible"
354
+ msgstr "実行可能"
355
+
356
+ #: pyfemtet/_i18n/messages.py:204
357
+ msgid "infeasible"
358
+ msgstr "実行不可能"
359
+
360
+ #: pyfemtet/_i18n/messages.py:205
361
+ msgid "Optimality"
362
+ msgstr "最適性"
363
+
364
+ #: pyfemtet/_i18n/messages.py:206
365
+ msgid "non dominated"
366
+ msgstr "非劣解"
367
+
368
+ #: pyfemtet/_i18n/messages.py:207
369
+ msgid "dominated"
370
+ msgstr "劣解"
371
+
372
+ #: pyfemtet/_i18n/messages.py:208
373
+ msgid "Hypervolume Plot"
374
+ msgstr "ハイパーボリュームプロット"
375
+
376
+ #: pyfemtet/_i18n/messages.py:209
377
+ msgid "Objective Plot"
378
+ msgstr "目的関数プロット"
379
+
380
+ #: pyfemtet/_i18n/messages.py:210
381
+ msgid "Multi Objective Pair Plot"
382
+ msgstr "多目的ペアプロット"
383
+
384
+ #: pyfemtet/_i18n/messages.py:211
385
+ msgid "Succeeded trial number"
386
+ msgstr "成功した試行回数"
387
+
388
+ #: pyfemtet/_i18n/messages.py:212
389
+ msgid "All solutions"
390
+ msgstr "すべての解"
391
+
392
+ #: pyfemtet/_i18n/messages.py:213
393
+ msgid "Transition of<br>optimal solutions"
394
+ msgstr "最適解の推移"
395
+
396
+ #: pyfemtet/_i18n/messages.py:214
397
+ msgid "Target value"
398
+ msgstr "目標値"
399
+
400
+ #: pyfemtet/_i18n/messages.py:216
401
+ msgid "Objectives"
402
+ msgstr "目的"
403
+
404
+ #: pyfemtet/_i18n/messages.py:217
405
+ msgid "Objectives (all)"
406
+ msgstr "目的(すべて)"
407
+
408
+ #: pyfemtet/_i18n/messages.py:219
409
+ #: pyfemtet/opt/visualization/plotter/pm_graph_creator.py:343
410
+ #: pyfemtet/opt/visualization/plotter/pm_graph_creator.py:350
411
+ msgid "Prediction Model"
412
+ msgstr "予測モデル"
413
+
414
+ #: pyfemtet/_i18n/messages.py:220
415
+ msgid " Recalculate Model"
416
+ msgstr "モデルを再計算する"
417
+
418
+ #: pyfemtet/_i18n/messages.py:221
419
+ msgid " Redraw graph"
420
+ msgstr "グラフを再描画"
421
+
422
+ #: pyfemtet/_i18n/messages.py:222
423
+ msgid "Parameter"
424
+ msgstr "パラメータ"
425
+
426
+ #: pyfemtet/_i18n/messages.py:223
427
+ msgid "Parameter2"
428
+ msgstr "パラメータ2"
429
+
430
+ #: pyfemtet/_i18n/messages.py:224
431
+ msgid "Objective"
432
+ msgstr "目的"
433
+
434
+ #: pyfemtet/_i18n/messages.py:225
435
+ msgid "No history selected."
436
+ msgstr "履歴が選択されていません。"
437
+
438
+ #: pyfemtet/_i18n/messages.py:226
439
+ msgid "No FEM result (yet)."
440
+ msgstr "FEM 結果なし(未解析)。"
441
+
442
+ #: pyfemtet/_i18n/messages.py:227
443
+ msgid "Prediction model is not calculated yet."
444
+ msgstr "予測モデルはまだ計算されていません。"
445
+
446
+ #: pyfemtet/_i18n/messages.py:228
447
+ msgid "Cannot select same parameter"
448
+ msgstr "同じパラメータを選択することはできません"
449
+
450
+ #: pyfemtet/_i18n/messages.py:229
451
+ msgid "3D graph (two or more parameters required)"
452
+ msgstr "3D グラフ(2つ以上のパラメータが必要)"
453
+
454
+ #: pyfemtet/_i18n/messages.py:231
455
+ msgid "Prediction Model of Objective"
456
+ msgstr "目的関数の予測モデル"
457
+
458
+ #: pyfemtet/_i18n/messages.py:232
459
+ msgid "prediction model"
460
+ msgstr "予測モデル"
461
+
462
+ #: pyfemtet/_i18n/messages.py:233
463
+ msgid "std. dev. of model"
464
+ msgstr "モデルの標準偏差"
465
+
466
+ #: pyfemtet/_i18n/messages.py:235
467
+ msgid "Progress"
468
+ msgstr "進捗"
469
+
470
+ #: pyfemtet/_i18n/messages.py:236
471
+ #: pyfemtet/opt/visualization/plotter/pm_graph_creator.py:168
472
+ #: pyfemtet/opt/visualization/plotter/pm_graph_creator.py:193
473
+ msgid "Prediction"
474
+ msgstr "予測"
475
+
476
+ #: pyfemtet/_i18n/messages.py:237
477
+ msgid "Workers"
478
+ msgstr "並列プロセス"
479
+
480
+ #: pyfemtet/_i18n/messages.py:238
481
+ msgid "Details"
482
+ msgstr "詳細"
483
+
484
+ #: pyfemtet/_i18n/messages.py:240
485
+ msgid "Optimization status will be shown here."
486
+ msgstr "最適化状況がここに表示されます。"
487
+
488
+ #: pyfemtet/_i18n/messages.py:241
489
+ msgid "Auto-update graph"
490
+ msgstr "グラフを自動更新"
491
+
492
+ #: pyfemtet/_i18n/messages.py:242
493
+ msgid "Interrupt Optimization"
494
+ msgstr "最適化を中断しました"
495
+
496
+ #: pyfemtet/_i18n/messages.py:244
497
+ msgid "Result"
498
+ msgstr "結果"
499
+
500
+ #: pyfemtet/_i18n/messages.py:246
501
+ msgid "Open Result in Femtet"
502
+ msgstr "Femtetで結果を開く"
503
+
504
+ #: pyfemtet/_i18n/messages.py:247
505
+ msgid "Reconstruct Model"
506
+ msgstr "モデルを再構築"
507
+
508
+ #: pyfemtet/_i18n/messages.py:248
509
+ msgid "Drag and drop or select csv file"
510
+ msgstr "ドラッグアンドドロップまたはcsvファイルを選択してください"
511
+
512
+ #: pyfemtet/_i18n/messages.py:249
513
+ msgid "Connection to Femtet is not established. Launch Femtet and Open a project."
514
+ msgstr "Femtet への接続が確立されていません。Femtet を起動してプロジェクトを開いてください。"
515
+
516
+ #: pyfemtet/_i18n/messages.py:250
517
+ msgid "No result plot is selected."
518
+ msgstr "結果プロットが選択されていません。"
519
+
520
+ #: pyfemtet/_i18n/messages.py:251
521
+ msgid "The femprj file path in the history csv is not found or valid."
522
+ msgstr "ヒストリ CSV 内の femprj ファイルパスが見つからないか有効ではありません。"
523
+
524
+ #: pyfemtet/_i18n/messages.py:252
525
+ msgid "The model name in the history csv is not found."
526
+ msgstr "履歴CSV内のモデル名が見つかりません。"
527
+
528
+ #: pyfemtet/_i18n/messages.py:253
529
+ 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`)."
530
+ msgstr ".pdt ファイルが見つかりません。.Results フォルダを確認してください。.pdt ファイルの保存モードは、最適化スクリプト内の FemtetInterface の `save_pdt` 引数に依存します(デフォルトは `all` です)。"
531
+
532
+ #: pyfemtet/_i18n/messages.py:258
533
+ msgid "Failed to open "
534
+ msgstr "次のファイルを開けませんでした: "
535
+
536
+ #: pyfemtet/_i18n/messages.py:259
537
+ msgid "Specified model is not in current project. Please check opened project. For example, not \"analysis model only\" but your .femprj file."
538
+ msgstr "指定されたモデルは現在のプロジェクトに含まれていません。開いているプロジェクトを確認してください。例えば「解析結果単体」を開いている場合、プロジェクトを .femprj に切り替えてください。"
539
+
540
+ #: pyfemtet/_i18n/messages.py:262
541
+ msgid ".femprj file path of the history csv is invalid. Please certify matching between csv and opening .femprj file."
542
+ msgstr "履歴csvの.femprjファイルパスが無効です。csvと開いている.femprjファイルの一致を確認してください。"
543
+
544
+ #: pyfemtet/_i18n/messages.py:263
545
+ msgid "Analysis model name of the history csv is invalid. Please certify matching between csv and opening analysis model."
546
+ msgstr "履歴csvの解析モデル名が無効です。csvと開いている解析モデルの一致を確認してください。"
547
+
548
+ #: pyfemtet/_i18n/messages.py:264
549
+ msgid "Analysis model name of the history csv and opened in Femtet is inconsistent. Please certify matching between csv and opening analysis model."
550
+ msgstr "履歴csvの解析モデル名とFEMTETで開いているモデル名が一致していません。csvと開いている解析モデルの一致を確認してください。"
551
+
552
+ #: pyfemtet/_i18n/messages.py:265
553
+ msgid "tutorial mode"
554
+ msgstr "チュートリアルモード"
555
+
556
+ #: pyfemtet/_i18n/messages.py:266
557
+ msgid "Load Sample CSV"
558
+ msgstr "サンプル CSV を読み込み"
559
+
560
+ #: pyfemtet/_i18n/messages.py:267
561
+ msgid "Load CSV"
562
+ msgstr "CSVを読み込み"
563
+
564
+ #: pyfemtet/_i18n/messages.py:268
565
+ 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."
566
+ msgstr "最適化結果を開いてください。すると自動的に femtet への接続が開始されます。なお、チュートリアルモードでは、このボタンを押すと既成のサンプル csv を読み込み、サンプル femprj を開きます。"
567
+
568
+ #: pyfemtet/_i18n/messages.py:270
569
+ msgid "Main Graph"
570
+ msgstr "メイングラフ"
571
+
572
+ #: pyfemtet/_i18n/messages.py:271
573
+ 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. "
574
+ msgstr "ここに最適化履歴が表示されます。各プロットは単一のFEM結果を表しています。結果を選択すると、対応する結果をFemtetで開くことができます。"
575
+
576
+ #: pyfemtet/_i18n/messages.py:274
577
+ msgid "Open Result"
578
+ msgstr "結果を開く"
579
+
580
+ #: pyfemtet/_i18n/messages.py:275
581
+ msgid "After pick a point in the main graph, This button shows the corresponding FEM result in Femtet."
582
+ msgstr "メイングラフで点を選択した後、このボタンは対応するFEM結果をFemtetに表示します。"
583
+
584
+ #: pyfemtet/_i18n/messages.py:277
585
+ msgid "Re-connect to Femtet."
586
+ msgstr "Femtet に(再)接続します。"
587
+
588
+ #: pyfemtet/_i18n/messages.py:278
589
+ msgid "Sample csv is not found. Please consider to re-install pyfemtet by `py -m pip install pyfemtet -U --force-reinstall`"
590
+ msgstr "サンプル csv が見つかりません。`py -m pip install pyfemtet -U --force-reinstall` コマンドで pyfemtet の再インストールを検討してください。"
591
+
592
+ #: pyfemtet/_i18n/messages.py:279
593
+ msgid "Sample femprj file is not found. Please consider to re-install pyfemtet by `py -m pip install pyfemtet -U --force-reinstall`"
594
+ msgstr "サンプル femprj ファイルが見つかりません。`py -m pip install pyfemtet -U --force-reinstall` を実行して pyfemtet を再インストールしてください。"
595
+
596
+ #: pyfemtet/_i18n/messages.py:280
597
+ msgid "Sample femprj result folder is not found. Please consider to re-install pyfemtet by `py -m pip install pyfemtet -U --force-reinstall`"
598
+ msgstr "サンプル femprj 結果フォルダが見つかりません。`py -m pip install pyfemtet -U --force-reinstall` で pyfemtet を再インストールしてください。"
599
+
600
+ #: pyfemtet/_i18n/messages.py:282
601
+ msgid "Loading data..."
602
+ msgstr "データを読み込み中..."
603
+
604
+ #: pyfemtet/_i18n/messages.py:283
605
+ msgid "Plots of objectives versus trials"
606
+ msgstr "目的関数値と試行回数のプロット"
607
+
608
+ #: pyfemtet/_i18n/messages.py:284
609
+ msgid "The vertical axis is the objective, and the horizontal axis is the number of trials."
610
+ msgstr "縦軸は目的関数、横軸は試行回数です。"
611
+
612
+ #: pyfemtet/_i18n/messages.py:285
613
+ msgid "Parallel coordinate plots"
614
+ msgstr "並行座標プロット"
615
+
616
+ #: pyfemtet/_i18n/messages.py:286
617
+ msgid "The vertical axis is an objective or parameters, and one polyline indicates one result."
618
+ msgstr "縦軸は目的関数またはパラメータを表しており、一本の折れ線が一つの結果を示します。"
619
+
620
+ #: pyfemtet/_i18n/messages.py:287
621
+ msgid "The heatmap of objectives"
622
+ msgstr "目的のヒートマップ"
623
+
624
+ #: pyfemtet/_i18n/messages.py:288
625
+ msgid "The axes are parameters, and the color shows objective value."
626
+ msgstr "軸はパラメータで、色は目的関数の値を示します。"
627
+
628
+ #: pyfemtet/_i18n/messages.py:289
629
+ msgid "The response of an objective versus one parameter"
630
+ msgstr "1つのパラメータに対する目的関数の応答"
631
+
632
+ #: pyfemtet/_i18n/messages.py:290
633
+ msgid "The vertical axis is objective, and the horizontal axis is parameter."
634
+ msgstr "縦軸は目的関数、横軸はパラメータです。"
635
+
636
+ #: pyfemtet/_i18n/messages.py:291
637
+ msgid "The importance of parameters evaluated by fANOVA"
638
+ msgstr "fANOVA によって評価されたパラメータの重要性"
639
+
640
+ #: pyfemtet/_i18n/messages.py:292
641
+ 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."
642
+ msgstr "パラメータの正規化された相対重要度です。重要度は特定の解析結果からではなく、入力と出力の全体的な関係性から算出されていることにご注意ください。"
643
+
644
+ #: pyfemtet/_util/femtet_exit.py:48
645
+ #, python-brace-format
646
+ 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."
647
+ msgstr "Femtet.Exit() は {timeout} 秒以内に終了しませんでした。最も一般的な原因は、Femtet 内でダイアログが開かれており、ユーザーの入力を待っていることです。ダイアログが存在する場合は閉じてください。"
648
+
649
+ #: pyfemtet/_util/femtet_exit.py:70
650
+ msgid "Macro version is not consistent to the one of Femtet.exe. Please consider toexecute ``Enable Macros`` of current Femtet version to fix it."
651
+ msgstr "マクロのバージョンがFemtet.exeのものと一致していません。修正するために、現在のFemtetバージョンで「Enable Macros」を実行してください。"
652
+
653
+ #: pyfemtet/_util/femtet_exit.py:91
654
+ msgid "Failed to close Femtet in 30 seconds."
655
+ msgstr "30秒以内にFemtetの終了に失敗しました。"
656
+
657
+ #: pyfemtet/_util/helper.py:48
658
+ #, python-brace-format
659
+ msgid "{name} does not finished in {timeout} seconds."
660
+ msgstr "{name} は {timeout} 秒以内に終了しませんでした。"
661
+
662
+ #: pyfemtet/opt/femopt.py:194
663
+ #, python-brace-format
664
+ msgid "===== pyfemtet version {ver} ====="
665
+ msgstr "===== pyfemtet バージョン {ver} ====="
666
+
667
+ #: pyfemtet/opt/femopt.py:216
668
+ msgid "Launching processes..."
669
+ msgstr "プロセスを起動しています..."
670
+
671
+ #: pyfemtet/opt/femopt.py:223
672
+ msgid "Connecting cluster..."
673
+ msgstr "クラスタに接続中..."
674
+
675
+ #: pyfemtet/opt/femopt.py:234
676
+ msgid "Launching threads..."
677
+ msgstr "スレッドを起動しています..."
678
+
679
+ #: pyfemtet/opt/femopt.py:248
680
+ msgid "Setting up..."
681
+ msgstr "設定中..."
682
+
683
+ #: pyfemtet/opt/femopt.py:277
684
+ msgid "Launching Monitor..."
685
+ msgstr "モニターを起動しています..."
686
+
687
+ #: pyfemtet/opt/femopt.py:298
688
+ msgid "Setting up optimization problem..."
689
+ msgstr "最適化問題を設定中..."
690
+
691
+ #: pyfemtet/opt/femopt.py:347
692
+ #, python-brace-format
693
+ 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."
694
+ msgstr "履歴を保存できません。最も一般的な原因は、csvファイルが他のプログラム(例えばExcel)によって開かれていることです。{path}の使用を解除するか、最適化履歴が失われます。"
695
+
696
+ #: pyfemtet/opt/femopt.py:381
697
+ 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."
698
+ msgstr "30秒以内にモニタホスト情報の取得に失敗しました。外部プロセスによるPOST `<host>:<port>/interrupt` のリクエストで終了させることができません。"
699
+
700
+ #: pyfemtet/opt/femopt.py:434
701
+ #, python-brace-format
702
+ msgid ""
703
+ "After the program ends, you can check the optimization results using the result viewer.\n"
704
+ "The result viewer can be launched by performing one of the following actions:\n"
705
+ "- (Windows only) Launch the `pyfemtet-opt-result-viewer` shortcut on your desktop if exists.\n"
706
+ "- (Windows only) Launch {path}.\n"
707
+ "- Execute \"py -m pyfemtet.opt.visualization.history_viewer\" in the command line"
708
+ msgstr ""
709
+
710
+ #: pyfemtet/opt/femopt.py:459
711
+ msgid "Press Enter to quit..."
712
+ msgstr "終了するには Enter キーを押してください..."
713
+
714
+ #: pyfemtet/opt/femopt.py:466
715
+ msgid "All processes are terminated."
716
+ msgstr "すべてのプロセスが終了しました。"
717
+
718
+ #: pyfemtet/opt/history/_history.py:299
719
+ #, python-brace-format
720
+ msgid "The name `{name}` is duplicated. Please use another name."
721
+ msgstr "名前「{name}」が重複しています。別の名前を使用してください。"
722
+
723
+ #: pyfemtet/opt/history/_history.py:1002
724
+ #, python-brace-format
725
+ 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."
726
+ msgstr "履歴 CSV ファイル({path})は使用中のため書き込みできません。プログラム終了前にこのファイルの使用を解除してください。そうしないと履歴データが失われます。"
727
+
728
+ #: pyfemtet/opt/interface/_excel_interface/excel_interface.py:412
729
+ #: pyfemtet/opt/interface/_excel_interface/excel_interface.py:901
730
+ #, python-brace-format
731
+ msgid "{procedure_kind} procedure {procedure_name} is running..."
732
+ msgstr "{procedure_kind} 手順 {procedure_name} を実行中..."
733
+
734
+ #: pyfemtet/opt/interface/_excel_interface/excel_interface.py:436
735
+ #: pyfemtet/opt/interface/_excel_interface/excel_interface.py:854
736
+ #: pyfemtet/opt/interface/_excel_interface/excel_interface.py:923
737
+ #, python-brace-format
738
+ msgid "Failed to run macro {procedure_name}. The original message is: {exception}"
739
+ msgstr "マクロ {procedure_name} の実行に失敗しました。元のメッセージ:{exception}"
740
+
741
+ #: pyfemtet/opt/interface/_excel_interface/excel_interface.py:448
742
+ msgid "Launching and connecting to Microsoft Excel..."
743
+ msgstr "Microsoft Excel を起動して接続しています..."
744
+
745
+ #: pyfemtet/opt/interface/_excel_interface/excel_interface.py:456
746
+ msgid "The connection to Excel is established."
747
+ msgstr "Excel への接続が確立されました。"
748
+
749
+ #: pyfemtet/opt/interface/_excel_interface/excel_interface.py:510
750
+ #, python-brace-format
751
+ msgid "Femtet XLA file not found: {xla_file_path}"
752
+ msgstr "Femtet XLA ファイルが見つかりません: {xla_file_path}"
753
+
754
+ #: pyfemtet/opt/interface/_excel_interface/excel_interface.py:756
755
+ #, python-brace-format
756
+ msgid "{xla_file_path} not found. Please check the \"Enable Macros\" command was executed."
757
+ msgstr "{xla_file_path} が見つかりませんでした。 「マクロを有効にする」コマンドが実行されたか確認してください。"
758
+
759
+ #: pyfemtet/opt/interface/_excel_interface/excel_interface.py:814
760
+ msgid "The cell address specification by named range is failed. The process changes the specification method to table based."
761
+ msgstr "セルアドレスの指定を名前付き範囲で行うことに失敗しました。処理は指定方法をテーブルベースに変更します。"
762
+
763
+ #: pyfemtet/opt/interface/_femtet_interface/femtet_interface.py:235
764
+ #, python-brace-format
765
+ msgid "Closing Femtet (pid = {pid}) ..."
766
+ msgstr "Femtet(pid = {pid})を終了しています・・・"
767
+
768
+ #: pyfemtet/opt/interface/_femtet_interface/femtet_interface.py:239
769
+ msgid "Femtet is closed."
770
+ msgstr "Femtet は終了しました。"
771
+
772
+ #: pyfemtet/opt/interface/_femtet_interface/femtet_interface.py:524
773
+ #, python-brace-format
774
+ 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."
775
+ msgstr "{name} は {warning_time_sec} 秒以内に終了しませんでした。最適化が停止している場合、主な原因は Femtet 内でダイアログが開いており、入力を待っていることです。Femtet にダイアログが表示されていないことを確認してください。"
776
+
777
+ #: pyfemtet/opt/interface/_femtet_with_nx_interface/femtet_with_nx_interface.py:40
778
+ msgid ""
779
+ "`run_journal.exe` is not found. Please check:\n"
780
+ "- NX is installed.\n"
781
+ "- The environment variable `UGII_BASE_DIR` is set.\n"
782
+ "- `<UGII_BASE_DIR>\\NXBIN\\run_journal.exe` exists.\n"
783
+ msgstr ""
784
+
785
+ #: pyfemtet/opt/interface/_femtet_with_solidworks/femtet_with_solidworks_interface.py:93
786
+ msgid "Failed to update Solidworks model."
787
+ msgstr "Solidworksモデルの更新に失敗しました。"
788
+
789
+ #: pyfemtet/opt/interface/_solidworks_interface/solidworks_interface.py:67
790
+ msgid "Failed to instantiate Solidworks. Please check installation and enabling macro."
791
+ msgstr "Solidworks の起動に失敗しました。インストールとマクロの有効化を確認してください。"
792
+
793
+ #: pyfemtet/opt/interface/_surrogate_model_interface/botorch_interface.py:255
794
+ #, python-brace-format
795
+ 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."
796
+ msgstr "代理モデルは実行可能確率(PoF)が {pof} と推定しました。これは {thresh} 未満です。したがって、この試行は拘束違反として処理されます。"
797
+
798
+ #: pyfemtet/opt/optimizer/_base_optimizer.py:40
799
+ msgid "----- Hidden constraint violation! -----"
800
+ msgstr "----- 隠れた拘束違反! -----"
801
+
802
+ #: pyfemtet/opt/optimizer/_base_optimizer.py:41
803
+ #, python-brace-format
804
+ msgid "error: {err_msg}"
805
+ msgstr "エラー: {err_msg}"
806
+
807
+ #: pyfemtet/opt/optimizer/_base_optimizer.py:51
808
+ #, python-brace-format
809
+ 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."
810
+ msgstr "名前{name}が重複しています。パラメータや目的関数の名前が重複している場合、後に定義されたものが先のものを上書きします。この上書きが意図的であることを必ずご確認ください。"
811
+
812
+ #: pyfemtet/opt/optimizer/_base_optimizer.py:136
813
+ #, python-brace-format
814
+ msgid "Supported variable types are Real or str, got {type}"
815
+ msgstr "対応している変数の型はRealまたはstrです。{type}が指定されました。"
816
+
817
+ #: pyfemtet/opt/optimizer/_base_optimizer.py:275
818
+ msgid "`names` must be a string or an array of strings."
819
+ msgstr "`names` は文字列または文字列の配列でなければなりません。"
820
+
821
+ #: pyfemtet/opt/optimizer/_base_optimizer.py:315
822
+ msgid "One of `lower_bound` and `upper_bound` should be set."
823
+ msgstr "`lower_bound` と `upper_bound` のいずれか一方を設定してください。"
824
+
825
+ #: pyfemtet/opt/optimizer/_base_optimizer.py:399
826
+ msgid "----- Hard constraint violation! -----"
827
+ msgstr "----- 拘束違反! -----"
828
+
829
+ #: pyfemtet/opt/optimizer/_base_optimizer.py:400
830
+ #, python-brace-format
831
+ msgid "constraint: {name}"
832
+ msgstr "拘束: {name}"
833
+
834
+ #: pyfemtet/opt/optimizer/_base_optimizer.py:401
835
+ #, python-brace-format
836
+ msgid "evaluated value: {value}"
837
+ msgstr "評価値:{value}"
838
+
839
+ #: pyfemtet/opt/optimizer/_base_optimizer.py:403
840
+ #, python-brace-format
841
+ msgid "lower bound: {lb}"
842
+ msgstr "下限値:{lb}"
843
+
844
+ #: pyfemtet/opt/optimizer/_base_optimizer.py:406
845
+ #, python-brace-format
846
+ msgid "upper bound: {ub}"
847
+ msgstr "上限:{ub}"
848
+
849
+ #: pyfemtet/opt/optimizer/_base_optimizer.py:493
850
+ #, python-brace-format
851
+ msgid "fidelity: ({name})"
852
+ msgstr "忠実度:({name})"
853
+
854
+ #: pyfemtet/opt/optimizer/_base_optimizer.py:494
855
+ msgid "input variables:"
856
+ msgstr "入力変数:"
857
+
858
+ #: pyfemtet/opt/optimizer/_base_optimizer.py:498
859
+ msgid "updating variables..."
860
+ msgstr "変数を更新中..."
861
+
862
+ #: pyfemtet/opt/optimizer/_base_optimizer.py:503
863
+ msgid "evaluating constraint functions..."
864
+ msgstr "拘束関数を評価しています..."
865
+
866
+ #: pyfemtet/opt/optimizer/_base_optimizer.py:514
867
+ msgid "Hidden constraint violation during hard constraint function evaluation: "
868
+ msgstr "ハード拘束関数評価中の隠れた拘束違反:"
869
+
870
+ #: pyfemtet/opt/optimizer/_base_optimizer.py:528
871
+ msgid "Hard constraint violation: "
872
+ msgstr "厳格拘束違反:"
873
+
874
+ #: pyfemtet/opt/optimizer/_base_optimizer.py:534
875
+ msgid "Solving FEM..."
876
+ msgstr ""
877
+
878
+ #: pyfemtet/opt/optimizer/_base_optimizer.py:549
879
+ msgid "Hidden constraint violation in FEM update: "
880
+ msgstr "FEM 更新時の隠れた拘束違反:"
881
+
882
+ #: pyfemtet/opt/optimizer/_base_optimizer.py:555
883
+ msgid "evaluating objective functions..."
884
+ msgstr "目的関数を評価しています..."
885
+
886
+ #: pyfemtet/opt/optimizer/_base_optimizer.py:569
887
+ msgid "Hidden constraint violation during objective function evaluation: "
888
+ msgstr "目的関数評価中の隠れた拘束違反:"
889
+
890
+ #: pyfemtet/opt/optimizer/_base_optimizer.py:576
891
+ msgid "evaluating remaining constraints..."
892
+ msgstr "残りの拘束を評価中..."
893
+
894
+ #: pyfemtet/opt/optimizer/_base_optimizer.py:594
895
+ msgid "Hidden constraint violation during soft constraint function evaluation: "
896
+ msgstr "ソフト拘束関数評価中の隠れた拘束違反:"
897
+
898
+ #: pyfemtet/opt/optimizer/_base_optimizer.py:608
899
+ msgid "output:"
900
+ msgstr "出力:"
901
+
902
+ #: pyfemtet/opt/optimizer/_base_optimizer.py:728
903
+ #, python-brace-format
904
+ msgid "===== Exception raised in worker {worker_idx} ====="
905
+ msgstr "===== ワーカー {worker_idx} で例外が発生しました ====="
906
+
907
+ #: pyfemtet/opt/optimizer/_base_optimizer.py:736
908
+ #, python-brace-format
909
+ msgid "{name}: {exc_val}"
910
+ msgstr "{name}: {exc_val}"
911
+
912
+ #: pyfemtet/opt/optimizer/_base_optimizer.py:747
913
+ #, python-brace-format
914
+ msgid "worker `{worker}` started."
915
+ msgstr "ワーカー `{worker}` が起動しました。"
916
+
917
+ #: pyfemtet/opt/optimizer/_base_optimizer.py:784
918
+ #, python-brace-format
919
+ msgid "worker `{worker}` successfully finished!"
920
+ msgstr "ワーカー `{worker}` が正常に完了しました!"
921
+
922
+ #: pyfemtet/opt/optimizer/scipy_optimizer/_scipy_optimizer.py:60
923
+ msgid "`ScipyOptimizer` cannot use timeout."
924
+ msgstr "`ScipyOptimizer` はタイムアウトを使用できません。"
925
+
926
+ #: pyfemtet/opt/optimizer/scipy_optimizer/_scipy_optimizer.py:72
927
+ msgid "`ScipyOptimizer` cannot use n_trials."
928
+ msgstr "`ScipyOptimizer` は n_trials を使用できません。"
929
+
930
+ #: pyfemtet/opt/optimizer/scipy_optimizer/_scipy_optimizer.py:86
931
+ msgid "Scipy can optimize only numerical parameters."
932
+ msgstr "Scipyは数値パラメータのみを最適化できます。"
933
+
934
+ #: pyfemtet/opt/problem/problem.py:168
935
+ #, python-brace-format
936
+ msgid "Index {i} is over n_return={n_return}."
937
+ msgstr "インデックス {i} が n_return={n_return} を超えています。"
938
+
939
+ #: pyfemtet/opt/problem/problem.py:195
940
+ #, python-brace-format
941
+ msgid "The number of return values of {fun_name} is {n_values}. This is inconsistent with the specified n_return; {n_return}."
942
+ msgstr "{fun_name} の返り値の数は {n_values} です。指定された返り値の数 {n_return} と一致しません。"
943
+
944
+ #: pyfemtet/opt/problem/variable_manager/_variable_manager.py:187
945
+ #, python-brace-format
946
+ msgid "Missing arguments! The arguments specified by `args`: {var_args} / The arguments specified by `kwargs`: {var_kwargs} / Required arguments: {msg}"
947
+ msgstr "引数が不足しています!`args` に指定された引数:{var_args} / `kwargs` に指定された引数:{var_kwargs} / 必要な引数:{msg}"
948
+
949
+ #: pyfemtet/opt/problem/variable_manager/_variable_manager.py:201
950
+ msgid "Extra positional argument name cannot be duplicated with a variable name."
951
+ msgstr "変数名と重複する余分な位置引数名を指定することはできません。"
952
+
953
+ #: pyfemtet/opt/problem/variable_manager/_variable_manager.py:218
954
+ msgid "Extra keyword argument name cannot be duplicated with a variable name."
955
+ msgstr "追加のキーワード引数 name は変数名と重複できません。"
956
+
957
+ #: pyfemtet/opt/problem/variable_manager/_variable_manager.py:290
958
+ #, python-brace-format
959
+ msgid "invalid format {format} is passed to VariableManager.get_variables(). Valid formats are one of (`raw`, `dict`, `values`)."
960
+ msgstr "VariableManager.get_variables() に渡されたフォーマット {format} が無効です。有効なフォーマットは `raw`、`dict`、`values` のいずれかです。"
961
+
962
+ #: pyfemtet/opt/visualization/history_viewer/_process_monitor/_pages.py:68
963
+ #, python-brace-format
964
+ msgid "Keep {y_or_xy} ranges"
965
+ msgstr "{y_or_xy} の範囲を維持してください"
966
+
967
+ #: pyfemtet/opt/visualization/history_viewer/result_viewer/_pages.py:220
968
+ #, python-brace-format
969
+ 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`)."
970
+ msgstr ".pdt ファイル({pdt_path})が見つかりません。.Results フォルダを確認してください。.pdt ファイルの保存モードは最適化スクリプト内の FemtetInterface の `save_pdt` 引数に依存します(デフォルトは `all` です)。"
971
+
972
+ #: pyfemtet/opt/visualization/history_viewer/result_viewer/_pages.py:295
973
+ #, python-brace-format
974
+ msgid "Unknown error has occurred in analysis model compatibility check. Exception message: {e}"
975
+ msgstr "解析モデル互換性チェックで不明なエラーが発生しました。例外メッセージ:{e}"
976
+
977
+ #: pyfemtet/opt/visualization/plotter/pm_graph_creator.py:146
978
+ msgid "Upper of pred. std-dev"
979
+ msgstr "予測標準偏差の上限"
980
+
981
+ #: pyfemtet/opt/visualization/plotter/pm_graph_creator.py:150
982
+ msgid "Lower of pred. std-dev"
983
+ msgstr "予測標準偏差の小さい方"
984
+
985
+ #: pyfemtet/opt/visualization/plotter/pm_graph_creator.py:183
986
+ msgid "Std-dev of pred."
987
+ msgstr "予測の標準偏差"
988
+
989
+ #~ 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."
990
+ #~ msgstr ""
991
+
992
+ #~ msgid "Sheet {sh_name} does not exist in the book {wb_name}."
993
+ #~ msgstr ""
994
+
995
+ #~ msgid "Launching and connecting to Solidworks..."
996
+ #~ msgstr ""
997
+
998
+ #~ msgid "Closing {model_name} in Solidworks..."
999
+ #~ msgstr ""
1000
+
1001
+ #~ msgid "{model_name} is closed."
1002
+ #~ msgstr ""
1003
+
1004
+ #~ msgid ""
1005
+ #~ "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"
1006
+ #~ "- Use small `eps` by `options` argument.\n"
1007
+ #~ "- Set `constraint_enhancement`to the value that it larger than the variation of the constraintfunction when input variables within the range of `eps`."
1008
+ #~ msgstr ""
1009
+
1010
+ #~ msgid "worker {worker_idx} started"
1011
+ #~ msgstr ""
1012
+
1013
+ #~ msgid "worker {worker_idx} successfully finished!"
1014
+ #~ msgstr ""
1015
+
1016
+ #~ msgid "Try to connect Femtet."
1017
+ #~ msgstr ""
1018
+
1019
+ #~ msgid "Open result failed."
1020
+ #~ msgstr ""