~ubuntu-branches/ubuntu/raring/rheolef/raring-proposed

« back to all changes in this revision

Viewing changes to doc/usrman/Makefile.am

  • Committer: Package Import Robot
  • Author(s): Pierre Saramito
  • Date: 2012-04-06 09:12:21 UTC
  • mfrom: (1.1.5)
  • Revision ID: package-import@ubuntu.com-20120406091221-m58me99p1nxqui49
Tags: 6.0-1
* New upstream release 6.0 (major changes):
  - massively distributed and parallel support
  - full FEM characteristic method (Lagrange-Gakerkin method) support
  - enhanced users documentation 
  - source code supports g++-4.7 (closes: #667356)
* debian/control: dependencies for MPI distributed solvers added
* debian/rules: build commands simplified
* debian/librheolef-dev.install: man1/* to man9/* added
* debian/changelog: package description rewritted (closes: #661689)

Show diffs side-by-side

added added

removed removed

Lines of Context:
44
44
# -----------------------------------------------------------------------------
45
45
 
46
46
CHECK_EXAMPLE_PRGM  =                                           \
47
 
        contraction-bubble                                      \
 
47
        dirichlet                                               \
48
48
        dirichlet-nh                                            \
49
 
        dirichlet                                               \
 
49
        robin                                                   \
 
50
        neumann                                                 \
 
51
        embankment                                              \
50
52
        embankment-adapt-2d                                     \
51
 
        embankment                                              \
52
53
        incompressible-elasticity                               \
53
54
        incompressible-elasticity-tst                           \
54
 
        neumann                                                 \
55
55
        neumann-laplace                                         \
56
56
        neumann-laplace-tst                                     \
57
 
        robin                                                   \
58
57
        stokes-cavity                                           \
59
58
        stokes-cavity-tst                                       \
60
59
        stokes-poiseuille                                       \
66
65
        vorticity                                               \
67
66
        heat                                                    \
68
67
        convect                                                 \
 
68
        contraction-bubble                                      \
69
69
        navier-stokes-cavity                                    \
70
70
        navier-stokes-cavity0                                   \
71
71
        vortex-position                                         \
 
72
        helmholtz_s_sphere                                      \
 
73
        helmholtz_band_sphere                                   \
 
74
        dirichlet_s_torus                                       \
 
75
        form_grad_s_tst                                         \
 
76
        form_div_s_tst                                          \
 
77
        form_ext_s_tst                                          \
72
78
        p-laplacian-fixed-point                                 \
73
79
        p-laplacian-newton                                      \
74
80
        p-laplacian-damped-newton
75
81
 
76
82
EXAMPLES_FILES =                                                \
77
 
        dirichlet.cc                                            \
 
83
        $(CHECK_EXAMPLE_PRGM:=.cc)                              \
78
84
        Makefile.demo                                           \
79
 
        dirichlet-nh.cc                                         \
80
 
        embankment.cc                                           \
81
 
        stress.cc                                               \
82
 
        embankment-adapt-2d.cc                                  \
83
 
        my-square.bamgcad                                               \
 
85
        my-square.bamgcad                                       \
84
86
        my-square.dmn                                           \
85
87
        my-line.mshcad                                          \
86
 
        my-square.mshcad                                                \
 
88
        my-square.mshcad                                        \
87
89
        my-cube.mshcad                                          \
88
90
        square-gmsh.mshcad                                      \
89
91
        cube-gmsh.mshcad                                        \
 
92
        circle_s.mshcad                                         \
 
93
        sphere_s.mshcad                                         \
 
94
        sphere_s_q.mshcad                                       \
 
95
        circle.mshcad                                           \
 
96
        sphere.mshcad                                           \
 
97
        circle_q.mshcad                                         \
 
98
        sphere_H.mshcad                                         \
 
99
        torus-gmsh.mshcad                                       \
90
100
        user2D.template                                         \
91
101
        user3D.template                                         \
92
102
        square-region.bdry                                      \
129
139
        p-laplacian-newton.cc                                   \
130
140
        p-laplacian.h                                           \
131
141
        p-laplacian.icc                                         \
132
 
        p-laplacian-damped-newton.cc
 
142
        p-laplacian-damped-newton.cc                            \
 
143
        isovalue_sphere.cc                                      \
 
144
        geo_min_aera.cc                                         \
 
145
        sphere.h                                                \
 
146
        torus.h                                                 \
 
147
        helmholtz_band_assembly.h                               \
 
148
        proj_s.cc                                               \
 
149
        banded_level_set_aux.h
133
150
 
134
151
# examples included in usrman
135
152
# ---------------------------
157
174
p_laplacian_fixed_point_SOURCES = p-laplacian-fixed-point.cc
158
175
p_laplacian_newton_SOURCES = p-laplacian-newton.cc
159
176
p_laplacian_damped_newton_SOURCES = p-laplacian-damped-newton.cc
 
177
helmholtz_s_sphere_SOURCES = helmholtz_s_sphere.cc
 
178
helmholtz_band_sphere_SOURCES = helmholtz_band_sphere.cc
 
179
dirichlet_s_torus_SOURCES = dirichlet_s_torus.cc
 
180
form_grad_s_tst_SOURCES = form_grad_s_tst.cc
 
181
form_div_s_tst_SOURCES = form_div_s_tst.cc
 
182
form_ext_s_tst_SOURCES = form_ext_s_tst.cc
160
183
 
161
184
check_PROGRAMS  =                                               \
162
185
        $(CHECK_EXAMPLE_PRGM)                                   \
184
207
        demo2-metric                                            \
185
208
        demo2-proj                                              \
186
209
        diffusion                                               \
187
 
        p-laplacian-post
 
210
        p-laplacian-post                                        \
 
211
        isovalue_sphere                                         \
 
212
        geo_min_aera                                            \
 
213
        helmholtz_s_sphere_error                                \
 
214
        helmholtz_band_sphere_error                             \
 
215
        proj_s
188
216
 
189
217
# extra-examples
190
218
dirichlet_nh_error_SOURCES = dirichlet-nh-error.cc
212
240
diffusion_SOURCES       = diffusion.cc
213
241
navier_stokes_cavity0_SOURCES   = navier-stokes-cavity0.cc
214
242
p_laplacian_post_SOURCES = p-laplacian-post.cc
 
243
isovalue_sphere_SOURCES         = isovalue_sphere.cc
 
244
geo_min_aera_SOURCES    = geo_min_aera.cc
 
245
helmholtz_s_sphere_error_SOURCES = helmholtz_s_sphere_error.cc
 
246
helmholtz_band_sphere_error_SOURCES = helmholtz_band_sphere_error.cc
 
247
proj_s_SOURCES = proj_s.cc
215
248
 
216
249
OLD_EXAMPLES =                                                  \
217
250
        old-cavity.h                                            \
245
278
        streamf-cavity-3d-fig.png                               \
246
279
        convect-fig.png                                         \
247
280
        heat-fig.png                                            \
248
 
        cube-gmsh-geo.png
 
281
        cube-gmsh-geo.png                                       \
 
282
        circle_s-10-field.png                                   \
 
283
        sphere_s-10-geo.png                                     \
 
284
        sphere_s-10-field.png                                   \
 
285
        icircle_s-10-field.png                                  \
 
286
        isphere_s-10-geo.png                                    \
 
287
        isphere_s-10-field.png                                  \
 
288
        circle_s-band-square-10-geo.png                         \
 
289
        sphere_s-band-cube-10-geo.png
249
290
 
250
291
# 2d views : vectorial (.pdf) files
251
292
# mayavi: 
300
341
        p-laplacian-newton-p=1,5.plot                           \
301
342
        p-laplacian-newton-p=1,6.plot                           \
302
343
        p-laplacian-newton-p=1,7.plot                           \
303
 
        p-laplacian-damped-newton-p=1,5.plot
 
344
        p-laplacian-damped-newton-p=1,5.plot                    \
 
345
        circle_s-10-geo.plot                                    \
 
346
        icircle_s-10-geo.plot
304
347
 
305
348
PLOTDATA =                                                      \
306
349
        transmission-line-6.dat                                 \
364
407
        p-laplacian-newton-n=20-p=1.7.gdat                      \
365
408
        p-laplacian-newton-n=30-p=1.7.gdat                      \
366
409
        p-laplacian-newton-n=40-p=1.7.gdat                      \
367
 
        p-laplacian-newton-n=50-p=1.7.gdat
 
410
        p-laplacian-newton-n=50-p=1.7.gdat                      \
 
411
        circle_s-10-geo.gdat                                    \
 
412
        icircle_s-10-geo.gdat
368
413
 
369
414
TEX_INCLUDED =                                                  \
370
415
        introduction.tex                                        \
373
418
        neumann.tex                                             \
374
419
        neumann-laplace.tex                                     \
375
420
        robin.tex                                               \
 
421
        surface.tex                                             \
376
422
        transmission.tex                                        \
377
423
        elasticity.tex                                          \
378
424
        stokes.tex                                              \
440
486
        stokes_tst.sh                                           \
441
487
        transmission_tst.sh                                     \
442
488
        convect_tst.sh                                          \
 
489
        helmholtz_s_sphere.sh                                   \
 
490
        helmholtz_band_sphere.sh                                \
 
491
        dirichlet_s_torus.sh                                    \
 
492
        form_grad_s_tst.sh                                      \
 
493
        form_div_s_tst.sh                                       \
 
494
        form_ext_s_tst.sh                                       \
443
495
        p_laplacian_tst.sh
444
496
 
445
497
TESTS_ENVIRONMENT =                                             \
578
630
                $(MAIN).bib                                     \
579
631
                ${DOC_TEX}                                      \
580
632
                ${TEX_INCLUDED}                                 \
581
 
                ${EXAMPLE_FILES_INCLUDED}                       \
 
633
                ${EXAMPLES_FILES}                               \
582
634
                ${FIGSRC:.fig=.pdf}                             \
583
635
                ${PLOTSRC:.plot=.pdf}                           \
584
636
                $(PNG_SRC)                                      \
684
736
        cd ../../nfem; ${MAKE}
685
737
 
686
738
install-data-local: dvi
687
 
        mkdirhier $(DESTDIR)$(docdir)
 
739
        $(MKDIRHIER) $(DESTDIR)$(docdir)
688
740
        if test -f usrman.pdf; then                             \
689
741
            $(INSTALL_DATA) usrman.pdf $(DESTDIR)$(docdir)/rheolef.pdf; \
690
742
        fi
691
 
        mkdirhier $(DESTDIR)$(exampledir)
 
743
        $(MKDIRHIER) $(DESTDIR)$(exampledir)
692
744
        rm -f $(DESTDIR)$(exampledir)/*
693
745
        for f in $(EXAMPLES_FILES); do                          \
694
746
            $(INSTALL_DATA) $(srcdir)/$$f $(DESTDIR)$(exampledir)/$$f;  \
700
752
        rm -rf $(DESTDIR)$(docdir)/*
701
753
 
702
754
web-install: usrman.pdf
703
 
        mkdirhier $(WEB_DIR)
 
755
        $(MKDIRHIER) $(WEB_DIR)
704
756
        $(INSTALL_DATA) usrman.pdf $(WEB_DIR)/usrman.pdf
705
757
 
706
758
number-of-pages: usrman.ps