Skip to content

Bounded

Choose a tag to compare

@alihakimtaskiran alihakimtaskiran released this 22 Mar 01:22
· 15 commits to main since this release
543de5f

Introducing Glimy v4.2.5: Enhanced Boundary Management for Your Grids

We are thrilled to announce the release of Glimy v4.2.5, an update that introduces a significant enhancement to our grid management capabilities. With this new version, users can now effortlessly define and manage boundary conditions for their 2D and 3D grids with the newly added Boundaries class.

🌟 New Features in v4.2.5:

  • Boundaries Class: This powerful new class enables users to define boundary conditions for each side of their grid, including Perfect Electric Conductor (PEC) and Absorbing Boundary Conditions (ABC). Users can now enjoy greater flexibility and control over their grid simulations.

  • Improved Error Handling: The updated Boundaries class includes robust error handling and validation mechanisms to ensure that users always provide valid boundary condition inputs, preventing potential issues and inconsistencies.

  • Enhanced Usability: With an intuitive method-based interface, Glimy v4.2.5 makes it simple for users to set or modify boundary conditions for their grids, whether in 2D or 3D.

💡 Example Use Case:


# Create a 3D grid with default ABC boundary conditions
boundaries = Boundaries(3)

# Set the left and right boundaries to PEC
boundaries.L("PEC")
boundaries.R("PEC")

# Set the bottom and up boundaries to PEC
boundaries.B("PEC")
boundaries.U("PEC")

# Set the front and down boundaries to ABC
boundaries.F("ABC")
boundaries.D("ABC")

# Get the boundary conditions for the grid
boundary_conditions = boundaries()

Upgrade to Glimy v4.2.5 today to take advantage of these powerful new features and enhance your grid simulations! Check out our documentation and examples for a more in-depth look at the new Boundaries class, and don't hesitate to reach out to our support team if you have any questions or need assistance.

Happy simulating! 🚀