Skip to content

Releases: MystranSolver/MYSTRANSolver

MYSTRAN 18.0.0

21 Apr 03:15
7f87b36

Choose a tag to compare

MYSTRAN 18.0.0

This major update brings massive performance improvements, a couple new features (and removal of some obsolete ones), and many bug fixes.

General performance improvements

The most noticeable change users will be able to notice is are massive performance improvements. We've seen speedups from 2x to 4x all the way to 10x.

This was achieved through optimisation of several loops and removing unused cruft. Props to @Copper280z and @victorkemp for their huge effort!

Multithreaded SuperLU support

Support has been added for the multithreaded variant of SuperLU. Some larger decks can run over twice as fast!

However, due to the fiddly nature of SuperLU's run-time memory scaling parameters, this has not been made into a default feature.

When building MYSTRAN, one can enable this feature with the -DUSE_SUPERLU_MT=yes. This requires OpenMP in your system, but most Linux and Windows (MSYS2) will already have it. If you do decide to use it, keep an eye on the SPIENV 6/7/8 PARAMs, especially SPIENV7. See PR #182 by @Bruno02468 for details.

F04 and ANS removed

The subroutine timing and log file (F04) is obsolete when debuggers and profilers exist -- and it required every source file to have a header and a footer.

The ANS file contained data similar to F06 but more machine-friendly. In the presence of OP2 and F06 tools (like pyNastran and nastools respectively), it can also be considered obsolete.

Both these formats required a ton of repetitive code for no tangible benefit, and @victorkemp undertook the grueling effort to rid us of them both.

The state of Lanczos...

This update brings several changes to the Lanczos eigenvalue extraction method. Two pieces of good news and one breaking change (warranting the major-version increase).

SuperLU for Lanczos

Thanks to @victorkemp, Lanczos solutions can now use SuperLU for the factorization step, and do so by default. It's a massive performance increase and memory usage decrease: decks that used to take hours and gigabytes now take minutes and megabytes.

Adaptive Lanczos driver for frequency-band mode

Frequency-band Lanczos mode (where you don't specify a fixed number of eigenvalues, just a frequency band) was essentially broken. The inertia-based calculation required a band matrix, which we no longer have due to the removal of BANDIT. It's not viable to run it for non-band matrices, hence the EIGESTL parameter, only allowing the estimator to run for decks with 5000 or less L-set DoF. Increasing this value just allowed the estimator to run for hours.

Instead, an adaptive Lanczos driver was implemented by @Bruno02468. Put very simply, it starts with 10 modes and doubles the amount until the number of in-band modes found becomes stable (or reaches the absurd limit of 10240). There's a bit more to it than that, but that's the gist.

What matters is, frequency-band mode now works for >5k L-set DoF.

Removed EIGRL continuation card

The EIGRL continuation card has been removed. It represented an incompatibility with major Nastran-compatible solvers, its fields were poorly-explained, and none of them should be set by the user.

Other fixes

There's also been many other bug fixes: K6ROT, MPCs, progress counters, timestamps...

Feel free to check the commits since 17.0.0 or the PRs below for details:

MYSTRAN 17.0.0

14 Oct 06:47
2b7547b

Choose a tag to compare

MYSTRAN 17.0.0

This update has been in the works for a while, and several new features have been introduced.

Among the additions, the most relevant are the MITC shell and the QUAD8 element -- both courtesy of @victorkemp.

There have also been bug fixes and performance improvements.

For details, check out the list of pull requests below, or the commit-level diff between 16.0.0 and 17.0.0 if you prefer.

Pull requests

MYSTRAN 16.0.0

06 May 01:10
f0ad505

Choose a tag to compare

This update contains several fixes, including breaking changes to the output.

Changes

All commits since 15.2.1: 15.2.1...16.0.0

MYSTRAN 15.2.1

31 Aug 16:24
4004704

Choose a tag to compare

This update contains improvements to the input parser and fixes several crashes.

Changes

All commits since 15.2.0: 15.2.0...15.2.1

MYSTRAN 15.2.0

08 Apr 03:21
f3076b5

Choose a tag to compare

This update implements a significant improvement to the RBE3 element (which would hardly be possible without the invaluable assistance we got from Victor from the MecWay project), a TUBE2 option for PBARL props, and adds grid point forces in OP2 output.

If you're interested in technical details, see the pull-request-level information:

MYSTRAN 15.1.7

25 Mar 11:56
68024f3

Choose a tag to compare

This update fixes a crash found when running some buckling solutions. Check out GH-44 for details.

MYSTRAN 15.1.6

14 Mar 19:15
15f51d9

Choose a tag to compare

This patch integrates memory bug fixes for buckling decks. See GH-41 for details.

MYSTRAN 15.1.5

13 Feb 01:34
bf79abf

Choose a tag to compare

This update integrates four PRs by @SteveDoyle2:

  • fix PARAM,GRDPNT bug in #21
  • case control no longer throws warnings for PLOT unless it's GPFORCE in #23
  • fixing op2 subcase id in #32
  • op2 gets date correct now instead of faked value #35

All commits compared to previous release: 15.1.4...15.1.5

MYSTRAN 15.1.4

28 Dec 06:44
8a7e218

Choose a tag to compare

This update fixes a memory bug when writing BAR engineering forces to a .ANS file. See GH-14.

MYSTRAN 15.1.3

26 Dec 20:48
5ccea6b

Choose a tag to compare

This patch-level update fixes a memory bug that could arise in models with PCOMPs. See GH-13.