Stability Mountains for Tischer4

, 192 min read

Beware, this three-dimensional graphic needs some time to load. You can rotate the graphic around any axis. This is in continuation of: Stability Regions for BDF and Tendler's Formulas Stability Regions for Tischer's Formulas Below is the output of: stabregion -s4 -o3 -r600 Tischer4: var…

Stability Mountains for Tischer3

, 147 min read

Beware, this three-dimensional graphic needs some time to load. You can rotate the graphic around any axis. This is in continuation of: Stability Regions for BDF and Tendler's Formulas Stability Regions for Tischer's Formulas Below is the output of: stabregion -s3 -o3 -r600 Tischer3: var…

Stability Mountains for Tendler7

, 352 min read

Beware, this three-dimensional graphic needs some time to load. You can rotate the graphic around any axis. This is in continuation of: Stability Regions for BDF and Tendler's Formulas Stability Regions for Tischer's Formulas Below is the output of: stabregion -t7 -o3 -r600 Tendler7: var…

Stability Mountains for Tendler6

, 296 min read

Beware, this three-dimensional graphic needs some time to load. You can rotate the graphic around any axis. This is in continuation of: Stability Regions for BDF and Tendler's Formulas Stability Regions for Tischer's Formulas Below is the output of: stabregion -t6 -o3 -r600 Tendler6: var…

Stability Mountains for Tendler5

, 252 min read

Beware, this three-dimensional graphic needs some time to load. You can rotate the graphic around any axis. This is in continuation of: Stability Regions for BDF and Tendler's Formulas Stability Regions for Tischer's Formulas Below is the output of: stabregion -t5 -o3 -r600 Tendler5: var…

Stability Mountains for Tendler4

, 200 min read

Beware, this three-dimensional graphic needs some time to load. You can rotate the graphic around any axis. This is in continuation of: Stability Regions for BDF and Tendler's Formulas Stability Regions for Tischer's Formulas Below is the output of: stabregion -t4 -o3 -r600 Tendler4: var…

Stability Mountains for Tendler3

, 150 min read

Beware, this three-dimensional graphic needs some time to load. You can rotate the graphic around any axis. This is in continuation of: Stability Regions for BDF and Tendler's Formulas Stability Regions for Tischer's Formulas Below is the output of: stabregion -t3 -o3 -r600 Tendler3: var…

Stability Mountains for BDF6

, 286 min read

Beware, this three-dimensional graphic needs some time to load. You can rotate the graphic around any axis. This is in continuation of: Stability Regions for BDF and Tendler's Formulas Stability Regions for Tischer's Formulas Below is the output of: stabregion -b6 -o3 -r600 BDF6: var…

Stability Mountains for BDF5

, 242 min read

Beware, this three-dimensional graphic needs some time to load. You can rotate the graphic around any axis. This is in continuation of: Stability Regions for BDF and Tendler's Formulas Stability Regions for Tischer's Formulas Below is the output of: stabregion -b5 -o3 -r600 BDF5: var…

Stability Mountains for BDF4

, 195 min read

Beware, this three-dimensional graphic needs some time to load. You can rotate the graphic around any axis. This is in continuation of: Stability Regions for BDF and Tendler's Formulas Stability Regions for Tischer's Formulas Below is the output of: stabregion -b4 -o3 -r600 BDF4: var…

Stability Mountains for BDF3

, 147 min read

Beware, this three-dimensional graphic needs some time to load. You can rotate the graphic around any axis. This is in continuation of: Stability Regions for BDF and Tendler's Formulas Stability Regions for Tischer's Formulas Below is the output of: stabregion -b3 -o3 -r600 BDF3: var…

Stability Mountains for BDF2

, 98 min read

Beware, this three-dimensional graphic needs some time to load. You can rotate the graphic around any axis. This is in continuation of: Stability Regions for BDF and Tendler's Formulas Stability Regions for Tischer's Formulas Below is the output of: stabregion -b2 -o3 -r600 BDF2: var…

Stability Mountains for BDF1

, 50 min read

Beware, this three-dimensional graphic needs some time to load. You can rotate the graphic around any axis. This is in continuation of: Stability Regions for BDF and Tendler's Formulas Stability Regions for Tischer's Formulas Below is the output of: stabregion -b1 -o3 -r600 BDF1: var…

Stability Regions for Donelson and Hansen Formulas

, 21 min read

In the seminal paper Cyclic Composite Multistep Predictor-Corrector Methods the two authors Donelson and Hansen derive cyclic multistep methods of high order and break the first Dahlquist barrier. Their formulas have the following properties. Method stages ℓ steps k order…

Stability Regions for Mihelčić's Formulas

, 42 min read

Matija Mihelcic and K. Wingerath searched for cyclic multistep methods, which were of high order p had a remarkable low number of stepnumbers k adhered to the condition of annulated dominance order p step k cycle length l 4 3 2 5 3 3 6 4 4 7 5 5 Bibliography: Matija (Miško)…

Vodafone Internet Outage #3

, 1 min read

From Thursday, 03-Jul-2025, starting at 23:10 (CET), internet provided by Vodafone was unavailable. The outage lasted until Friday, 04-Jul-2025, 06:40 (CET). I personally didn't notice anything until 06:00, as I was asleep. So for seven and a half hours I had no internet and the blog went…

Stability Regions for Tischer's Formulas

, 27 min read

Ten years after Tendler's PhD in 1973, Peter Tischer finished his PhD thesis in 1983. He developed an array of cyclic multistep formulas, which are all stiffly stable. While Tendler found his formulas by guessing and experimenting, Tischer computed his formulas according the following…

Stability Regions for BDF and Tendler's Formulas

, 69 min read

In Die verwendeten zyklischen Formeln im Programm TENDLER we listed the Widlund wedge α and Widlund distance δ for the seven formulas of Joel Tendler, which he developed during his PhD thesis in 1973. Here we compute these values by using the QZ algorithm. We list the values for the BDF (backward…

Filtering Lines with Specific Length

, 1 min read

Task at hand: extract all lines of a file, which do not have a specific line length. Example: Print out all lines, which do not have a line length of 171 and not 1370. Also see Line Length Distribution in Files. Below Perl one-liner does that, here for the line lengths 20 and 21: perl -ne 'print if…

Computing Generalized Eigenvalues with LAPACK

, 3 min read

Task at hand: compute generalized eigenvalues for $$ A x = \lambda B x, \qquad A, B \in \mathbb{C}^{n\times n}, \quad x\in\mathbb{C}^n, \quad\lambda\in\mathbb{C} $$ using the C programming language and the Fortran library LAPACK. Previously I had used cqzhes() and cqzval() from EISPACK. 1.…



← Older       Newer →