*  Octave / Mesh / fc_simesh package

        * Snapshots
        * Current development release
        * Installation automatic, all in one (recommanded)
        * Version history
        * Old development releases


PIC

The experimental fc-simesh Octave package contains the siMesh class which allows to use simplices meshes generated from gmsh (in dimension 2 or 3) or an hypercube triangulation (in any dimension).

*  Snapshots





























This package was tested under

Windows 10.0.16299 :
with Octave 4.2.0 and 4.2.1
Mac OS X 10.12.6 :
with Octave 4.2.1 (installed with homebrew)
Ubuntu 14.04.5 LTS :
with Octave 4.2.0 and 4.2.1 (both compiled from source)
Ubuntu 16.04.3 LTS :
with Octave 4.2.0 and 4.2.1 (both compiled from source)
Ubuntu 17.10 :
with Octave 4.2.0 and 4.2.1 (both compiled from source)

It is not compatible with Octave 4.0.x and previous.

*  Current development release






Version

date

package

archives

install

User’s Guide







0.2.1

december 13, 2017

PIC (37 Ko)

PIC (37 Ko)
PIC (71 Ko)
PIC (31 Ko)

PIC (5 Ko)

PIC (934 Ko)







*  Installation automatic, all in one (recommanded)

For this method, one just have to get/download the install file PIC (5 Ko) ofc_simesh_install.m Thereafter, one run it under Octave. This command download, extract and configure the fc-simesh and the required packages (fc-tools, fc-oogmsh, fc-hypermesh) in the current directory.

For example, to install this package in ~/Octave/packages directory, one have to copy the file ofc_simesh_install.m in the ~/Octave/packages directory. Then in a Octave terminal run the following commands to install the fc-simesh package with graphical extension

Octave Console

>> cd ~/Octave/packages  
>> ofc_simesh_install

There is the output of the ofc_simesh_install command on a Linux computer :

Octave Ouput

Parts of the GNU Octave <fc-simesh> package.  
Copyright (C) 2016-2017 Francois Cuvelier <cuvelier@math.univ-paris13.fr>  
 
1- Downloading and extracting the packages  
   -> <fc-tools>[0.0.19] ... OK  
   -> <fc-hypermesh>[0.0.6] ... OK  
   -> <fc-oogmsh>[0.0.17] ... OK  
   -> <fc-simesh>[0.2.1] ... OK  
   -> <fc-graphics4mesh>[0.0.2] ... OK  
   -> <fc-siplt>[0.0.2] ... OK  
2- Setting the packages  
2-a) Setting the <fc-hypermesh> package  
Write in ~/Octave/packages/fc-simesh-full/fc_hypermesh-0.0.6/configure_loc.m ...  
  -> done  
2-b) Setting the <fc-oogmsh> package  
[fc-oogmsh] Using GMSH binary : ~/bin/gmsh  
[fc-oogmsh] Writing in ~/Octave/packages/fc-simesh-full/fc_oogmsh-0.0.17/configure_loc.m ...  
[fc-oogmsh] configured with  
   ->     gmsh_bin=’~/bin/gmsh’;  
   ->     mesh_dir=’~/Octave/packages/fc-simesh-full/fc_oogmsh-0.0.17/meshes’;  
   ->      geo_dir=’~/Octave/packages/fc-simesh-full/fc_oogmsh-0.0.17/geodir’;  
   -> fc_tools_dir=’~/Octave/packages/./fc-simesh-full/fc_tools-0.0.19’;  
[fc-oogmsh] done  
2-c) Setting the <fc-simesh> package without graphics  
[fc-simesh] Unable to load the fc-siplt toolbox/package in current path  
[fc-simesh] Guess path does not exists:  
   -> siplt  
[fc-] Guess path does not exists:  
   -> [fc-simesh] Use fc_simesh.configure(’fc_siplt_dir’,<DIR>) to correct this issue  
 
[fc-simesh] no graphics package installed  
[fc-simesh] Writing in ~/Octave/packages/fc-simesh-full/fc_simesh-0.2.1/configure_loc.m ...  
[fc-simesh] configured with  
   -> oogmsh_dir    =’~/Octave/packages/./fc-simesh-full/fc_oogmsh-0.0.17’;  
   -> hypermesh_dir =’~/Octave/packages/./fc-simesh-full/fc_hypermesh-0.0.6’;  
   -> siplt_dir     =’’;  
[fc-simesh] done  
2-d) Setting the <fc-graphics4mesh> toolbox  
Write in ~/Octave/packages/fc-simesh-full/fc_graphics4mesh-0.0.2/configure_loc.m ...  
  -> done  
2-e) Setting the <fc-siplt> toolbox  
Write in ~/Octave/packages/fc-simesh-full/fc_siplt-0.0.2/configure_loc.m ...  
  -> done  
2-f) Setting the <fc-simesh> toolbox with graphics  
[fc-simesh] Writing in ~/Octave/packages/fc-simesh-full/fc_simesh-0.2.1/configure_loc.m ...  
[fc-simesh] configured with  
   -> oogmsh_dir    =’~/Octave/packages/./fc-simesh-full/fc_oogmsh-0.0.17’;  
   -> hypermesh_dir =’~/Octave/packages/./fc-simesh-full/fc_hypermesh-0.0.6’;  
   -> siplt_dir     =’~/Octave/packages/./fc-simesh-full/fc_siplt-0.0.2’;  
[fc-simesh] done  
3- Using instructions  
   To use the <fc-simesh> package:  
   addpath(’~/Octave/packages/./fc-simesh-full/fc_simesh-0.2.1’)  
   fc_simesh.init()  
 
   See ~/Octave/packages/ofc_simesh_set.m

The complete package (i.e. with all the other needed packages) is stored in the directory ~/Octave/packages/fc-simesh-full and, for each Octave session, one have to set the package by :

Octave Console

>> addpath(’~/Octave/packages/fc-simesh-full/fc-simesh-0.2.1’)  
>> fc_simesh.init()

To install the fc-simesh package without graphical extension one can use the following command

Octave Console

>> ofc_simesh_install(’graphics’,false)

For uninstalling, one just have to delete directory

~/Octave/packages/fc-simesh-full

To quickly test this package, one can run one of the examples located in the directory fc_simesh-0.2.1/+fc_simesh/+demos. For example, runs

Octave Console

>> fc_simesh.demos.feval2D01()

or the complete demo (take a long time)

Octave Console

>> fc_simesh.demos.alldemos()

*  Version history

*  Old development releases






Version

date

package

archives

install

User’s Guide







0.2.0

November 8, 2017

PIC (36 Ko)

PIC (36 Ko)
PIC (70 Ko)
PIC (30 Ko)

PIC (4 Ko)

PIC (1137 Ko)







0.1.4

October 10, 2017

PIC (42 Ko)

PIC (42 Ko)
PIC (81 Ko)
PIC (34 Ko)

PIC (3 Ko)

PIC (8363 Ko)







0.1.3

February 8, 2017

PIC (38 Ko)

PIC (38 Ko)
PIC (73 Ko)
PIC (31 Ko)

PIC (2 Ko)

PIC (8000 Ko)







0.1.2

February 2, 2017

PIC (38 Ko)

PIC (38 Ko)
PIC (73 Ko)
PIC (31 Ko)

PIC (3 Ko)

PIC (7999 Ko)







0.1.1

January 15, 2017

PIC (37 Ko)

PIC (37 Ko)
PIC (72 Ko)
PIC (30 Ko)

PIC (3 Ko)

PIC (6683 Ko)







0.1.0

January 4, 2017

PIC (37 Ko)

PIC (37 Ko)
PIC (72 Ko)
PIC (30 Ko)

PIC (3 Ko)

PIC (6683 Ko)







0.0.4

December 30, 2017

PIC (35 Ko)

PIC (36 Ko)
PIC (71 Ko)
PIC (30 Ko)

PIC (3 Ko)

PIC (4742 Ko)