Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Problem Specification[
1. Start-up and preliminary set-up

SIMULATION:Semi-monocoque shell page 1][
2. Specify element type and constants

SIMULATION:Semi-monocoque shell page 2]
3. Specify material properties
4. Specify geometry
5. Mesh geometry
6. Specify boundary conditions
7. Solve!
8. Postprocess the results
9. Validate the results

Step 4: Specify geometry

...

In previous tutorials, we have defined keypoints (i.e. vertices) using menus. Here, we will instead use the command line to create keypoints. The two methods are equivalent but the latter is faster for more experienced users. Let's check the documentation to find the command for creating keypoints. In the ANSYS documentation window, select the Search tab, enter "keypoint" as the search term and click on List Topics. Double-click on 5.2 Creating Your ..._in the left pane. Section 5.2 has useful information on creating your solid model. Scroll down to section 5.2.1. The table near the beginning of this section indicates that the command for creating keypoints is K_. Note that the corresponding menu path is what we have used in previous tutorials to create keypoints. The menu path also indicates that this command is part of the _Preprocessor module. Click on K to see the format of this command.
Since it is useful to track the keypoint and area numbers as we create the geometry, turn on keypoint and area numbering: Utility Menu > PlotCtrls > Numbering
Turn on Keypoint numbers and Area numbers and click OK.
To access the K command, make sure the preprocessor module is open.
Create keypoint #1 at (0,0,0): at the command prompt, type K,1,0,0,0 as below and hit Enter. Note that when you type the command, the format of the command pops-up as a reminder.


Similarly, create keypoints #2-#4 in the above table by entering the following at the command prompt:
{{ K,2,W1/(2*NSX),0,0
K,3,W1/(2*NSX),L1/(2*NSY),0
K,4,0,L1/(2*NSY),0}}
ANSYS uses the current value of the parameters W1, L1, NSX and NSY when creating the keypoints. If you change the value of any of these parameters after you have created the keypoints, these keypoints will notbe moved accordingly, i.e. the keypoint coordinates will still contain the old values of the parameters. It is important to remember this idiosyncracy of ANSYS; otherwise, it could come back to bite you in uncomfortable parts of your anatomy.
Is it safe to presume that you are cheating like I would and cutting-and-pasting the command line inputs? That's OK as long as you do them one-by-one so that you can track the effect of each command. To fit all the keypoints in your current view, click on the Fit View icon in the rightmost part of the GUI (see snapshot below). You'll have to click on this button periodically to fit the entire geometry into your view.


To create an area from keypoints #1-#4, enter a,1,2,3,4 at the command line. Note that ANSYS automatically assigns the label A1 to this first area. This area corresponds to the plate.
Next create keypoints #5 and #6 followed by the area corresponding to the stiffener in the y-direction. Enter
{{ K,5,W1/(2*NSX),L1/(2*NSY),H2
K,6,W1/(2*NSX),0,H2
A,2,3,5,6}}
To bring up the isometric view, click on the Isometric View icon in the right part of the GUI (see snapshot below). The area is labeled A2. If the area disappears from the view, select Utility Menu > Plot > Areas.



Now that we have gotten the hang of this business, we can create the remaining keypoints and areas in our sleep (remember to wipe the drool off the keyboard):
{{ K,7,0,L1/(2*NSY),H2
K,8,0,L1/(2*NSY),H3
K,9,W1/(2*NSX),L1/(2*NSY),H3
A,3,4,7,5
A,5,7,8,9}}
Utility Menu > Plot > Areas
The geometry should look like this:

...