Steps to Create a Cross-Section in Plaxis 2D.

To create a cross-section of the Nai Gaj Dam in Plaxis 2D, follow these steps:

Steps to Create a Cross-Section in Plaxis 2D

1. Open Plaxis 2D

  • Launch the Plaxis 2D software.

2. Create a New Project

  • Click on it.File > New Project
  • Set up the project parameters (project name, location, etc.).

3. Define Geometry

  • Draw the cross-section:
  • Use the Geometry tool to create the dam profile.
  • Draw the dam’s embankment and the surrounding terrain. Make sure to represent the dam’s height, width, and any other relevant features (spillways, etc.).

4. Define Materials

  • Assign Material Properties:
  • Go to the Materialssection.
  • Define the properties of different materials (soil, rock, and concrete for the dam).
  • Assign appropriate parameters like cohesion, friction angle, and density.

5. Set Up the Model

  • Define Boundaries:
  • Set up the boundaries of the model (e.g., left and right boundaries, base).
  • Add Water Table:
  • If applicable, define the water level in the model to simulate hydrostatic pressure on the dam.

6. Meshing

  • Generate Mesh:
  • Go to the Meshsection and create a mesh for the model.
  • Ensure that the mesh is refined enough to capture the geometry details.

7. Define Construction Phases

  • Set Up Phases:
  • Define construction stages (e.g., excavation, dam placement).
  • This is crucial for analyzing the dam’s stability during and after construction.

8. Run Analysis

  • Select Analysis Type:
  • Choose the appropriate analysis type (e.g., static, dynamic).
  • Run the analysis:
  • Click on the Calculate button to run the analysis.

9. View Results

  • Cross-Section Results:
  • After the analysis is complete, go to the Resultssection to view the cross-section.
  • You can visualize stresses, displacements, and pore pressures.

10. Export Cross-Section

  • Export the cross-section:
  • Use the File > Exportoption to save the cross-section as an image or PDF.

Conclusion

You have successfully created a cross-section of your dam (i.e., Nai Gaj Dam) in Plaxis 2D. Adjust the parameters and analyze different scenarios as needed. Feel free to ask if you need further assistance or specific details about each step!

OR

To create the Nai Gaj Dam cross-section in Plaxis 2D using all methods (Python scripting, manual geometry, DXF import, and background image tracing), follow this structured guide. Each method is explained step-by-step to ensure accuracy and alignment with the research paper’s specifications.


1. Python Scripting (Plaxis API)

Automate the geometry creation using Python and the Plaxis API.

Steps:

  1. Install Required Libraries:
   pip install plxscripting
  1. Python Script:
   from plxscripting.easy import *

   # Connect to Plaxis
   s_i, g_i = new_server('localhost', 10000, password='your_password')
   g_i.new()

   # Set units
   g_i.PROJECT_SETUNITS("FORCE", "kN")
   g_i.PROJECT_SETUNITS("LENGTH", "m")

   # Define materials (from Table I in the paper)
   clay_core = g_i.soillayer("Clay Core", "MohrCoulomb")
   clay_core.setproperties("gammaSat", 18.85, "c", 9.57, "phi", 30, "E", 50000, "k", 0.000263)

   sandy_gravel = g_i.soillayer("Sandy Gravel", "MohrCoulomb")
   sandy_gravel.setproperties("gammaSat", 21.5, "phi", 34, "E", 50000, "k", 86.4)

   random_fill = g_i.soillayer("Random Fill", "MohrCoulomb")
   random_fill.setproperties("gammaSat", 18.85, "phi", 32, "E", 50000, "k", 0.0263)

   # Define coordinates (in meters)
   crest = (0, 59)
   core_upstream_toe = (-59/3, 0)  # 1H:3V slope
   core_downstream_toe = (59/4, 0)  # 1H:4V slope
   shell_upstream_toe = (-59*2.5 - 59/3, 0)  # 1V:2.5H slope
   shell_downstream_toe = (59*2.5 + 59/4, 0)

   # Draw geometry
   core = g_i.polyline([crest, core_upstream_toe, core_downstream_toe, crest])
   upstream_shell = g_i.polyline([core_upstream_toe, shell_upstream_toe])
   downstream_shell = g_i.polyline([core_downstream_toe, shell_downstream_toe])

   # Assign materials to clusters
   g_i.assignmaterial(clay_core, core)
   g_i.assignmaterial(sandy_gravel, upstream_shell)
   g_i.assignmaterial(random_fill, downstream_shell)

   # Generate mesh and save
   g_i.gotomesh()
   g_i.mesh(0.1)  # Medium coarseness
   g_i.save("Nai_Gaj_Dam.p2dx")

2. Manual Geometry Creation

Manually draw the cross-section using Plaxis tools.

Steps:

  1. Key Coordinates:
  • Crest: (0, 59)
  • Core Toes:
    • Upstream: (-19.67, 0) (slope 1H:3V)
    • Downstream: (+14.75, 0) (slope 1H:4V)
  • Shell Toes:
    • Upstream: (-167.17, 0) (slope 1V:2.5H)
    • Downstream: (+162.25, 0)
  1. Draw Geometry:
  • Use the Polyline tool to connect points for the core, shells, filters, and foundation.
  • Assign materials using properties from Table I (e.g., clay core: ( c’ = 9.57 \, \text{kPa}, \phi’ = 30^\circ )).

3. Import Geometry from DXF

Import a pre-drawn CAD file.

Steps:

  1. Prepare DXF File:
  • Use CAD software (e.g., AutoCAD) to create layers for:
    • Core
    • Upstream/downstream shells
    • Filters and drainage
    • Foundation
  • Export as .dxf.
  1. Import into Plaxis:
  • Go to Geometry → Tools → Import Geometry → DXF.
  • Assign materials to each layer based on Table I.

4. Background Image Tracing

Trace over an image of the dam’s cross-section.

Steps:

  1. Import Image:
  • Use Tools → Background Image → Add Image to upload Cross-section-of-Nai-Gaj-dam.PNG.
  • Scale using reference points:
    • Crest: (0, 59)
    • Downstream toe: (162.25, 0)
  1. Trace Geometry:
  • Use the Polyline tool to trace the core, shells, and drainage features.

Common Steps for All Methods

1. Material Properties

Clay core18.859.573050,0000.000263
Sandy gravel21.503450,00086.4
Random fill18.8503250,0000.0263
Sandy siltstone20.41229125,0000.00063

2. Hydraulic Conditions

  • Initial groundwater level: 15m below the surface.
  • Reservoir water level: 56.6m (upstream).

3. Mesh Generation

  • Element type: 15-node triangular elements.
  • Refinement: Element size ≈ 3.2m near critical zones (core, slopes).

4. Boundary Conditions

  • Base: Fully fixed ((x=0, y=0)).
  • Sides: Roller supports ((y=0)).

5. Staged Construction

  1. Phase 1: Activate foundation.
  2. Phase 2: Build core in 3m lifts (30 days/layer).
  3. Phase 3: Construct shells and filters.
  4. Phase 4: Fill reservoir to 56.6m.

6. Analysis

  • Run coupled consolidation-deformation analysis.
  • Compute safety factors using Phi-c Reduction.
  • Target:
    • End of construction: ( \text{FS} = 1.6 )
    • After reservoir filling: ( \text{FS} = 1.48 )

Validation & Output

  • Compare pore pressure dissipation with the paper’s Figures 5–7.
  • Verify failure zones:
  • Upstream slope failure during construction.
  • Downstream slope failure after reservoir filling.
  • Export results:
  • Total displacements.
  • Excess pore pressure distribution.
  • Critical slip surfaces.

Troubleshooting

  • Geometry Misalignment: Cross-check coordinates with the paper’s Figure 1.
  • Safety Factor Mismatch: Confirm ( \phi’ = 34^\circ ) (sandy gravel) and ( \phi’ = 32^\circ ) (random fill).
  • Mesh Errors: Refine elements near slopes or adjust solver tolerances.

Leave a Comment

Your email address will not be published. Required fields are marked *

wpChatIcon
wpChatIcon
Scroll to Top