From a805ffd79dbf1dc4e7b63d585883c6ec0c3c807c Mon Sep 17 00:00:00 2001
From: ws_plaxis <ws@plaxis.com>
Date: Tue, 27 Mar 2018 13:13:04 +0200
Subject: [PATCH] Add correct length and correct 3D algorithm, as with old
 Delaunay (Tetgen) it couldn't create the 3D mesh.

---
 benchmarks/occ/occ_sphere.geo | 9 +++------
 1 file changed, 3 insertions(+), 6 deletions(-)

diff --git a/benchmarks/occ/occ_sphere.geo b/benchmarks/occ/occ_sphere.geo
index 8b7b58fe85..689da71600 100644
--- a/benchmarks/occ/occ_sphere.geo
+++ b/benchmarks/occ/occ_sphere.geo
@@ -1,10 +1,7 @@
-// This example shows the possibility of inserting embedded points and lines on
-// periodic surfaces
-
 SetFactory("OpenCASCADE");
 Sphere(1) = {0, 0, 0, 0.5, -Pi/2, Pi/2, 2*Pi};
 
-Characteristic Length {1, 2} = 1.0;
-Mesh.CharacteristicLengthFactor = 1.0;
+Mesh.CharacteristicLengthFactor = 0.99;
 
-Mesh.Algorithm = 6; // Frontal
\ No newline at end of file
+Mesh.Algorithm = 6; // Frontal
+Mesh.Algorithm3D = 2; // New Delaunay
\ No newline at end of file
-- 
GitLab