.. DO NOT EDIT. .. THIS FILE WAS AUTOMATICALLY GENERATED BY SPHINX-GALLERY. .. TO MAKE CHANGES, EDIT THE SOURCE PYTHON FILE: .. "examples/EM/em_resistive_heating_2d.py" .. LINE NUMBERS ARE GIVEN BELOW. .. only:: html .. note:: :class: sphx-glr-download-link-note :ref:`Go to the end ` to download the full example code. .. rst-class:: sphx-glr-example-title .. _sphx_glr_examples_EM_em_resistive_heating_2d.py: Resistive heating 2D ==================== This example of a simple metal bar imposes potential on both ends. The executable file for LS-DYNA is ``ls-dyna_smp_d_R13.1_138-g8429c8a10f_winx64_ifort190.exe``. .. GENERATED FROM PYTHON SOURCE LINES 8-81 .. rst-class:: sphx-glr-script-out .. code-block:: none '/server/output' | .. code-block:: Python import os import sys from ansys.dyna.core.pre import examples, launch_dynapre from ansys.dyna.core.pre.dynaem import ( FEMSOLVER, Curve, DynaEM, EMType, Isopotential, Isopotential_ConnType, NodeSet, PartSet, ShellFormulation, ShellPart, ThermalAnalysis, ThermalAnalysisType, ) from ansys.dyna.core.pre.dynamaterial import EMMATTYPE, MatRigid, MatThermalIsotropic from ansys.dyna.core.pre.misc import check_valid_ip hostname = "localhost" if len(sys.argv) > 1 and check_valid_ip(sys.argv[1]): hostname = sys.argv[1] solution = launch_dynapre(ip=hostname) fns = [] path = examples.em_resistive_heating_2d + os.sep fns.append(path + "em_resistive_heating_2d.k") solution.open_files(fns) solution.set_termination(termination_time=0.0101) solution.create_database_binary(dt=1e-4) emobj = DynaEM() solution.add(emobj) emobj.set_timestep(tssfac=1, timestep_size_for_mass_scaled=1e-4) emobj.analysis.set_timestep(timestep=1e-4) emobj.analysis.set_em_solver(type=EMType.RESISTIVE_HEATING) emobj.analysis.set_solver_fem(solver=FEMSOLVER.DIRECT_SOLVER, relative_tol=1e-3) tanalysis = ThermalAnalysis() tanalysis.set_timestep(initial_timestep=1e-4) tanalysis.set_solver(analysis_type=ThermalAnalysisType.TRANSIENT) emobj.add(tanalysis) matrigid = MatRigid(mass_density=1, young_modulus=2e11) matrigid.set_em_resistive_heating_2d(material_type=EMMATTYPE.CONDUCTOR, initial_conductivity=1e4) matthermaliso = MatThermalIsotropic(density=100, specific_heat=10, conductivity=7) part = ShellPart(1) part.set_material(matrigid, matthermaliso) part.set_element_formulation(ShellFormulation.PLANE_STRESS) emobj.parts.add(part) emobj.boundaryconditions.create_imposed_motion(PartSet([1]), Curve(x=[0, 10], y=[10, 10])) emobj.set_init_temperature(temp=25) emobj.connect_isopotential( contype=Isopotential_ConnType.VOLTAGE_SOURCE, isopotential1=Isopotential(NodeSet([521, 517, 513, 509, 525])), value=500, ) emobj.connect_isopotential( contype=Isopotential_ConnType.VOLTAGE_SOURCE, isopotential1=Isopotential(NodeSet([585, 605, 625, 564, 565])) ) emobj.create_em_output(mats=2, matf=2, sols=2, solf=2) solution.save_file() .. rst-class:: sphx-glr-timing **Total running time of the script:** (0 minutes 0.034 seconds) .. _sphx_glr_download_examples_EM_em_resistive_heating_2d.py: .. only:: html .. container:: sphx-glr-footer sphx-glr-footer-example .. container:: sphx-glr-download sphx-glr-download-jupyter :download:`Download Jupyter notebook: em_resistive_heating_2d.ipynb ` .. container:: sphx-glr-download sphx-glr-download-python :download:`Download Python source code: em_resistive_heating_2d.py ` .. container:: sphx-glr-download sphx-glr-download-zip :download:`Download zipped: em_resistive_heating_2d.zip ` .. only:: html .. rst-class:: sphx-glr-signature `Gallery generated by Sphinx-Gallery `_