File: control

package info (click to toggle)
rheolef 7.2-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 88,076 kB
  • sloc: cpp: 110,259; sh: 16,733; makefile: 5,438; python: 1,391; yacc: 218; javascript: 203; xml: 191; awk: 61; sed: 5
file content (202 lines) | stat: -rw-r--r-- 8,499 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
Source: rheolef
Maintainer: Debian Science Maintainers <debian-science-maintainers@lists.alioth.debian.org>
Uploaders: Pierre Saramito <pierre.saramito@imag.fr>
Section: math
Priority: optional
Build-Depends: debhelper-compat (= 12),
               bsdextrautils,
               chrpath,
               openssh-client,
	       autoconf,
               automake,
               libtool,
               flex,
	       libfl-dev,
               bison,
               libboost-dev,
               libboost-iostreams-dev,
               libboost-mpi-dev,
               libcgal-dev,
               liblapack-dev,
	       libeigen3-dev,
               libsuitesparse-dev,
               libscotch-dev,
               libptscotch-dev,
               libscotchparmetis-dev,
               libmumps-scotch-dev,
               libmumps-ptscotch-dev,
               texlive-latex-recommended,
               texlive-latex-extra,
               texlive-science,
               texlive-fonts-recommended,
               texlive-font-utils,
               texlive-extra-utils,
               ghostscript,
               poppler-utils,
               cm-super,
	       doxygen,
               gnuplot-nox,
	       fig2dev,
               cairosvg | inkscape
# boost: mpi, serialization, iostream, functional, iterator, optional
# cgal: geometric pre dicates and octree
# eigen: sequential sparse matrix solver
# suitesparse: sequential sparse matrix solver
# mumps, scotch, lapack: distributed sparse matrix solver
# paraview (optional): for testing at compile time the paraview version (.vtk high-order FEM format)
# doxygen: for the reference manual, as .html and unix man pages
# texlive-latex-recommended : for index, float, listings, etc
# texlive-latex-extra : for a4wide
# texlive-science : for amstex, amsmath
# texlive-fonts-recommended :
# texlive-font-utils : metatype1 ; epstopdf
# texlive-extra-utils : for pdfcrop, used for .pdf figures
# cm-super : for portable type1 fonts in pdf, usepackage[T1]{fontenc}
# ghostscript : for gs, used for final .pdf compression
# poppler-utils : for pdffonts
# gnuplot-nox : for .plot to .pdf figures conversion
# fig2dev : for .fig to .pdf conversion
# cairosvg : for .svg to .pdf conversion
# doxygen : for html doc from source code
Standards-Version: 4.5.1
Vcs-Browser: https://salsa.debian.org/science-team/rheolef
Vcs-Git: https://salsa.debian.org/science-team/rheolef.git
Homepage: http://ljk.imag.fr/membres/Pierre.Saramito/rheolef
Rules-Requires-Root: no

Package: librheolef1
Architecture: any
Section: libs
Depends: ${shlibs:Depends},
         ${misc:Depends}
Suggests: rheolef-doc(= ${source:Version})
Description: efficient Finite Element environment - shared library
 Rheolef is a computer environment that serves as a convenient laboratory for
 computations in applied mathematics involving finite element-like methods.
 It provides a set of commands and C++ algorithms and containers.
 .
 Most basically, containers cover the classic graph data structure for sparse
 matrix formats and finite element meshes. At a higher level of abstraction,
 they can handle approximate finite element spaces, discrete fields.
 Flexible and powerful expressions are used to specify bilinear forms.
 .
 Current applications include:
  * massively distributed memory finite element environment, based on MPI;
  * elasticity, Stokes and Navier-Stokes problems in 2D and 3D;
  * complex fluids applications: viscoplasticity, viscoelasticity, wall slip;
  * nonlinear problems with fixed-point, Newton and continuation methods;
  * high order polynomials, mixed elements and discontinuous Galerkin methods;
  * auto-adaptive mesh approaches;
  * axisymmetric problems;
  * multi-regions and variable coefficient problems.
 .
 This package provides the shared library.

Package: librheolef-dev
Architecture: any
Section: libdevel
Depends: librheolef1(= ${binary:Version}),
         g++,
         make,
         libboost-dev,
         libboost-mpi-dev,
         libboost-iostreams-dev,
         libcgal-dev,
         libeigen3-dev,
         libsuitesparse-dev,
         liblapack-dev,
         libscotch-dev,
         libptscotch-dev,
         libscotchparmetis-dev,
         libmumps-scotch-dev,
         libmumps-ptscotch-dev,
         ${misc:Depends}
Recommends: rheolef-doc(= ${source:Version})
Breaks: rheolef (<< 7.1-7~)
Replaces: rheolef (<< 7.1-7~)
Description: efficient Finite Element environment - development files
 Rheolef is a computer environment that serves as a convenient laboratory for
 computations in applied mathematics involving finite element-like methods.
 It provides a set of commands and C++ algorithms and containers.
 .
 Most basically, containers cover the classic graph data structure for sparse
 matrix formats and finite element meshes. At a higher level of abstraction,
 they can handle approximate finite element spaces, discrete fields.
 Flexible and powerful expressions are used to specify bilinear forms.
 .
 Current applications include:
  * massively distributed memory finite element environment, based on MPI;
  * elasticity, Stokes and Navier-Stokes problems in 2D and 3D;
  * complex fluids applications: viscoplasticity, viscoelasticity, wall slip;
  * nonlinear problems with fixed-point, Newton and continuation methods;
  * high order polynomials, mixed elements and discontinuous Galerkin methods;
  * auto-adaptive mesh approaches;
  * axisymmetric problems;
  * multi-regions and variable coefficient problems.
 .
 This package provides the headers required for development.

Package: rheolef-doc
Architecture: all
Section: doc
Depends: ${misc:Depends},
Conflicts: librheolef-doc
Replaces: librheolef-doc
Multi-Arch: foreign
Description: efficient Finite Element environment - documentation
 Rheolef is a computer environment that serves as a convenient laboratory for
 computations in applied mathematics involving finite element-like methods.
 It provides a set of commands and C++ algorithms and containers.
 .
 Most basically, containers cover the classic graph data structure for sparse
 matrix formats and finite element meshes. At a higher level of abstraction,
 they can handle approximate finite element spaces, discrete fields.
 Flexible and powerful expressions are used to specify bilinear forms.
 .
 Current applications include:
  * massively distributed memory finite element environment, based on MPI;
  * elasticity, Stokes and Navier-Stokes problems in 2D and 3D;
  * complex fluids applications: viscoplasticity, viscoelasticity, wall slip;
  * nonlinear problems with fixed-point, Newton and continuation methods;
  * high order polynomials, mixed elements and discontinuous Galerkin methods;
  * auto-adaptive mesh approaches;
  * axisymmetric problems;
  * multi-regions and variable coefficient problems.
 .
 This package provides the documentation.

Package: rheolef
Architecture: any
Depends: ${shlibs:Depends},
         ${misc:Depends},
         librheolef-dev(= ${binary:Version}),
         rheolef-doc(= ${source:Version})
Recommends: gmsh,
            gnuplot-qt,
            paraview,
            python3-paraview | paraview-python
Breaks: librheolef-dev (<< 7.1-7~),
Replaces: librheolef-dev (<< 7.1-7~),
Description: efficient Finite Element environment
 Rheolef is a computer environment that serves as a convenient laboratory for
 computations in applied mathematics involving finite element-like methods.
 It provides a set of commands and C++ algorithms and containers.
 .
 Most basically, containers cover the classic graph data structure for sparse
 matrix formats and finite element meshes. At a higher level of abstraction,
 they can handle approximate finite element spaces, discrete fields.
 Flexible and powerful expressions are used to specify bilinear forms.
 .
 Current applications include:
  * massively distributed memory finite element environment, based on MPI;
  * elasticity, Stokes and Navier-Stokes problems in 2D and 3D;
  * complex fluids applications: viscoplasticity, viscoelasticity, wall slip;
  * nonlinear problems with fixed-point, Newton and continuation methods;
  * high order polynomials, mixed elements and discontinuous Galerkin methods;
  * auto-adaptive mesh approaches;
  * axisymmetric problems;
  * multi-regions and variable coefficient problems.
 .
 This package provides the rheolef commands. These support input and
 output in various file formats for mesh-generators and numerical data
 visualization systems such as paraview, and gnuplot.