There are probably two problems.
First, Assertions are not turned on unless you are running a debug build. CMake defaults to debug builds and you often need to fight it to prevent that.
Does this exact error (or just a crash without an assertion) happen with the Ubuntu package as downloaded from the OpenVSP website, or are you getting the *.deb from somewhere else?
You can also tell that it is a debug build because the file names and line numbers are all listed.
You (or whoever packaged the *.deb) should not be doing a Debug build. The Debug builds for OpenVSP and VSPAERO are extremely slow. Your performance will not be what we expect and your user experience will suffer.
In fact, debug builds are so slow that I usually don't use them even for development -- CMake can do what is called a 'Release With Debug Info' build that gives many of the benefits of a Debug build, but without the big performance penalty.
Unfortunately, all this means that debug builds seldom get run and therefore, the asserts that are in the source are seldom exercised.
This can mean that bugs remain hidden (you may have found a real problem here). Or it can mean that the failure causing the assert is handled gracefully by the calling code and the assert is actually harmless (and should be fixed).
I will try to get a full debug build going and see if I can chase this down.
In the meantime, you should work to force your build to be a Release build and see if that fixes the problem.
If you are getting the *.deb from someplace other than the OpenVSP website, then we need to reach out to the packager to get them to make their build a Release build.
And if you are getting it from the OpenVSP website, then I need to figure out what has gone wrong with my build that it is not a Release build.
Finally -- your subject line says this is the default wing. Please report exact steps to recreate this issue -- make sure I'm not missing anything.
Rob