### GET OCZONE Command Examples Source: https://www.mm.bme.hu/~gyebro/files/ans_help_v182/ans_cmd/Hlp_C_GET.html Examples of using the GET command to retrieve information about OCZONE entities. ```ANSYS Commands ***GET**, _`Par`_, OCZONE,_`N`_,_`Item1`_,_`IT1NUM`_,_`Item2`_,_`IT2NUM`_ ``` ```ANSYS Commands ***GET**, _`Par`_, OCZONE, 0,_`Item1`_,_`IT1NUM`_,_`Item2`_,_`IT2NUM`_ ``` -------------------------------- ### POST1 and POST26 Setup Source: https://www.mm.bme.hu/~gyebro/files/ans_help_v182/ans_cmd/Hlp_C_RESET.html Indicates the setup for POST1 and POST26 specifications. ```text POST1: Set Up POST26: Set Up ``` -------------------------------- ### HELP Command Examples Source: https://www.mm.bme.hu/~gyebro/files/ans_help_v182/ans_cmd/Hlp_C_HELP.html Examples of using the HELP command to get information on commands and element types. ```ANSYS Command Language HELP ,MP HELP ,SOLID185 HELP ,185 HELP ,BEAM HELP ,SOLID HELP ,HYPER ``` -------------------------------- ### GET PART Command Examples Source: https://www.mm.bme.hu/~gyebro/files/ans_help_v182/ans_cmd/Hlp_C_GET.html Examples of using the GET command to retrieve information about PART entities. ```ANSYS Commands ***GET**, _`Par`_, PART,_`N`_,_`Item1`_,_`IT1NUM`_,_`Item2`_,_`IT2NUM`_ ``` ```ANSYS Commands ***GET**, _`Par`_, PART, 0, Item1, IT1NUM, Item2, IT2NUM ``` -------------------------------- ### ASK Command Example Source: https://www.mm.bme.hu/~gyebro/files/ans_help_v182/ans_cmd/Hlp_C_ASK.html Example demonstrating how the ASK command can be used to set a parameter. ```ANSYS APDL ***ASK,NN,PARAMETER NN ``` -------------------------------- ### GET PIPE Command Examples Source: https://www.mm.bme.hu/~gyebro/files/ans_help_v182/ans_cmd/Hlp_C_GET.html Examples of using the GET command to retrieve information about PIPE entities. ```ANSYS Commands ***GET**, _`Par`_, PIPE,_`NUM`_,_`Item1`_,_`IT1NUM`_,_`Item2`_,_`IT2NUM`_ ``` ```ANSYS Commands ***GET**, _`Par`_, PIPE,_`id`_, Item1, IT1NUM, Item2, IT2NUM ``` -------------------------------- ### SMBODY Command Example Source: https://www.mm.bme.hu/~gyebro/files/ans_help_v182/ans_cmd/Hlp_C_SMBODY.html Example of the SMBODY command and its compatible products. ```text SMBODY Compatible Products: – | Pro | Premium | Enterprise | Ent PP | Ent Solver | DYNA ``` -------------------------------- ### GET SCTN Command Example Source: https://www.mm.bme.hu/~gyebro/files/ans_help_v182/ans_cmd/Hlp_C_GET.html Example of using the GET command to retrieve information about SCTN (pretension section) entities. ```ANSYS Commands ***GET**, _`Par`_, SCTN,_`N`_,_`Item1`_,_`IT1NUM`_,_`Item2`_,_`IT2NUM`_ ``` -------------------------------- ### SAMPLECMD Command Example Source: https://www.mm.bme.hu/~gyebro/files/ans_help_v182/ans_cmd/Hlp_C_CH3.html This example shows the basic syntax and argument options for the SAMPLECMD command, which controls automatic time stepping or load stepping. ```ANSYS APDL SAMPLECMD, Key Key Automatic time stepping key: OFF -- Do not use automatic time stepping (default). ON -- Use automatic time stepping. ``` -------------------------------- ### GET REIN Command Example Source: https://www.mm.bme.hu/~gyebro/files/ans_help_v182/ans_cmd/Hlp_C_GET.html Example of using the GET command to retrieve information about REIN (reinforcing section) entities. ```ANSYS Commands ***GET**, _`Par`_, REIN,_`N`_,_`Item1`_,_`IT1NUM`_,_`Item2`_,_`IT2NUM`_ ``` -------------------------------- ### Example of running ANSYS in distributed mode and combining files Source: https://www.mm.bme.hu/~gyebro/files/ans_help_v182/ans_cmd/Hlp_C_COMBINE.html This example demonstrates a command line used to generate local solution files in a distributed ANSYS session, and explains how to combine these files in a subsequent session. ```Shell ansys182 -dis -machines _machine1_:_4_:_machine2_:_1_:_machine3_:_2_ -i input -o output ``` -------------------------------- ### GET RCON Command Examples Source: https://www.mm.bme.hu/~gyebro/files/ans_help_v182/ans_cmd/Hlp_C_GET.html Examples of using the GET command to retrieve information about RCON (real constant set) entities. ```ANSYS Commands ***GET**, _`Par`_, RCON,_`N`_,_`Item1`_,_`IT1NUM`_,_`Item2`_,_`IT2NUM`_ ``` ```ANSYS Commands ***GET**, _`Par`_, RCON,_`0`_, Item1, IT1NUM, Item2, IT2NUM ``` -------------------------------- ### GET Solution Entity Items Example Source: https://www.mm.bme.hu/~gyebro/files/ans_help_v182/ans_cmd/Hlp_C_GET.html Example of retrieving damping ratio for a specific mode. ```ANSYS APDL GET,DAMP,MODE,N,ITEM,DAMP ``` -------------------------------- ### Example of mailing a redirected output file Source: https://www.mm.bme.hu/~gyebro/files/ans_help_v182/ans_cmd/Hlp_C_MAIL.html This example shows how to redirect ANSYS output to a file and then mail that file using the /MAIL command. ```ansys-script ... /PREP7 /OUT,scratch.out : : FINISH /OUT /MAIL,,_YourName_@_YourDomain.com_,scratch.out FINISH ``` -------------------------------- ### KSEL Example Source: https://www.mm.bme.hu/~gyebro/files/ans_help_v182/ans_cmd/Hlp_C_KSEL.html Example of using KSEL to select keypoints by number. ```ANSYS Command Language KSEL ,S,KP,,1,7 ``` -------------------------------- ### GET DDAM Entity Items Example Source: https://www.mm.bme.hu/~gyebro/files/ans_help_v182/ans_cmd/Hlp_C_GET.html Example of retrieving the shock design value for a specific mode from a DDAM analysis. ```ANSYS APDL GET,DSHOCK,DDAM,N,ITEM1,DSHOCK ``` -------------------------------- ### VGET Example Source: https://www.mm.bme.hu/~gyebro/files/ans_help_v182/ans_cmd/Hlp_C_VGET.html Example of moving variable 2 to array parameter A, starting at element A(1). ```ANSYS VGET ,A(1),2 ``` -------------------------------- ### DISPLAY Command Example Source: https://www.mm.bme.hu/~gyebro/files/ans_help_v182/ans_cmd/Hlp_C_DISPLAY.html Example of the DISPLAY command for setting status topic. ```text POST1 ``` -------------------------------- ### VPLOT Command Example Source: https://www.mm.bme.hu/~gyebro/files/ans_help_v182/ans_cmd/Hlp_C_VPLOT_st.html Example demonstrating how to use the VPLOT command to graph multiple columns of array parameters. ```APDL ***VPLOT**,TIME (4,6), DISP (8,1),2,3 ```