annotate inst/import_ufl_FunctionSpace.m @ 154:262c9d7bda1c

Call the header file from the /include directories
author gedeone-octave <marcovass89@hotmail.it>
date Thu, 12 Sep 2013 13:44:23 +0200
parents 1dbe146bff03
children 8190736845fe
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
152
1dbe146bff03 Update license to gpl v3
gedeone-octave <marcovass89@hotmail.it>
parents: 148
diff changeset
1 ## Copyright (C) 2013 Marco Vassallo <gedeone-octave@users.sourceforge.net>
148
f2193e825ad7 Maint: update copyright notice
gedeone-octave <marcovass89@hotmail.it>
parents: 136
diff changeset
2 ##
52
0aefa30d4ce0 New function for the creation of the functionalspace
gedeone-octave <marco.vassallo@outlook.com>
parents:
diff changeset
3 ## This program is free software; you can redistribute it and/or modify it under
0aefa30d4ce0 New function for the creation of the functionalspace
gedeone-octave <marco.vassallo@outlook.com>
parents:
diff changeset
4 ## the terms of the GNU General Public License as published by the Free Software
152
1dbe146bff03 Update license to gpl v3
gedeone-octave <marcovass89@hotmail.it>
parents: 148
diff changeset
5 ## Foundation; either version 3 of the License, or (at your option) any later
52
0aefa30d4ce0 New function for the creation of the functionalspace
gedeone-octave <marco.vassallo@outlook.com>
parents:
diff changeset
6 ## version.
148
f2193e825ad7 Maint: update copyright notice
gedeone-octave <marcovass89@hotmail.it>
parents: 136
diff changeset
7 ##
52
0aefa30d4ce0 New function for the creation of the functionalspace
gedeone-octave <marco.vassallo@outlook.com>
parents:
diff changeset
8 ## This program is distributed in the hope that it will be useful, but WITHOUT
0aefa30d4ce0 New function for the creation of the functionalspace
gedeone-octave <marco.vassallo@outlook.com>
parents:
diff changeset
9 ## ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
0aefa30d4ce0 New function for the creation of the functionalspace
gedeone-octave <marco.vassallo@outlook.com>
parents:
diff changeset
10 ## FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
0aefa30d4ce0 New function for the creation of the functionalspace
gedeone-octave <marco.vassallo@outlook.com>
parents:
diff changeset
11 ## details.
148
f2193e825ad7 Maint: update copyright notice
gedeone-octave <marcovass89@hotmail.it>
parents: 136
diff changeset
12 ##
52
0aefa30d4ce0 New function for the creation of the functionalspace
gedeone-octave <marco.vassallo@outlook.com>
parents:
diff changeset
13 ## You should have received a copy of the GNU General Public License along with
0aefa30d4ce0 New function for the creation of the functionalspace
gedeone-octave <marco.vassallo@outlook.com>
parents:
diff changeset
14 ## this program; if not, see <http://www.gnu.org/licenses/>.
0aefa30d4ce0 New function for the creation of the functionalspace
gedeone-octave <marco.vassallo@outlook.com>
parents:
diff changeset
15
0aefa30d4ce0 New function for the creation of the functionalspace
gedeone-octave <marco.vassallo@outlook.com>
parents:
diff changeset
16 ## -*- texinfo -*-
136
c445cdf36fb1 Fix new naming convention for the generation of the problem from .ufl file.
gedeone-octave <marcovass89@hotmail.it>
parents: 69
diff changeset
17 ## @deftypefn {Function File} {} = import_ufl_FunctionSpace (myproblem)
c445cdf36fb1 Fix new naming convention for the generation of the problem from .ufl file.
gedeone-octave <marcovass89@hotmail.it>
parents: 69
diff changeset
18 ## This function takes as input the name of the .ufl file where
c445cdf36fb1 Fix new naming convention for the generation of the problem from .ufl file.
gedeone-octave <marcovass89@hotmail.it>
parents: 69
diff changeset
19 ## the FunctionSpace is defined and import it inside Octave
c445cdf36fb1 Fix new naming convention for the generation of the problem from .ufl file.
gedeone-octave <marcovass89@hotmail.it>
parents: 69
diff changeset
20 ## @seealso{import_ufl_Problem, FunctionSpace, BilinearForm, LinearForm}
52
0aefa30d4ce0 New function for the creation of the functionalspace
gedeone-octave <marco.vassallo@outlook.com>
parents:
diff changeset
21 ## @end deftypefn
0aefa30d4ce0 New function for the creation of the functionalspace
gedeone-octave <marco.vassallo@outlook.com>
parents:
diff changeset
22
136
c445cdf36fb1 Fix new naming convention for the generation of the problem from .ufl file.
gedeone-octave <marcovass89@hotmail.it>
parents: 69
diff changeset
23 function import_ufl_FunctionSpace (var_prob)
52
0aefa30d4ce0 New function for the creation of the functionalspace
gedeone-octave <marco.vassallo@outlook.com>
parents:
diff changeset
24
0aefa30d4ce0 New function for the creation of the functionalspace
gedeone-octave <marco.vassallo@outlook.com>
parents:
diff changeset
25 if nargin != 1
136
c445cdf36fb1 Fix new naming convention for the generation of the problem from .ufl file.
gedeone-octave <marcovass89@hotmail.it>
parents: 69
diff changeset
26 error ("import_ufl_FunctionSpace: wrong number of input parameters.");
52
0aefa30d4ce0 New function for the creation of the functionalspace
gedeone-octave <marco.vassallo@outlook.com>
parents:
diff changeset
27 elseif ! ischar (var_prob)
136
c445cdf36fb1 Fix new naming convention for the generation of the problem from .ufl file.
gedeone-octave <marcovass89@hotmail.it>
parents: 69
diff changeset
28 error ("import_ufl_FunctionSpace: first argument is not a valid string");
52
0aefa30d4ce0 New function for the creation of the functionalspace
gedeone-octave <marco.vassallo@outlook.com>
parents:
diff changeset
29 endif
0aefa30d4ce0 New function for the creation of the functionalspace
gedeone-octave <marco.vassallo@outlook.com>
parents:
diff changeset
30
0aefa30d4ce0 New function for the creation of the functionalspace
gedeone-octave <marco.vassallo@outlook.com>
parents:
diff changeset
31 n = length (mfilename ("fullpath")) - length (mfilename());
0aefa30d4ce0 New function for the creation of the functionalspace
gedeone-octave <marco.vassallo@outlook.com>
parents:
diff changeset
32 path = strtrunc(mfilename ("fullpath"), n);
0aefa30d4ce0 New function for the creation of the functionalspace
gedeone-octave <marco.vassallo@outlook.com>
parents:
diff changeset
33
154
262c9d7bda1c Call the header file from the /include directories
gedeone-octave <marcovass89@hotmail.it>
parents: 152
diff changeset
34 private = fullfile (path, "include/");
67
5a781e79bee1 Call new octave script instead of python script
gedeone-octave <marco.vassallo@outlook.com>
parents: 52
diff changeset
35 output = generate_fs (var_prob);
5a781e79bee1 Call new octave script instead of python script
gedeone-octave <marco.vassallo@outlook.com>
parents: 52
diff changeset
36 output += generate_makefile (var_prob, private);
52
0aefa30d4ce0 New function for the creation of the functionalspace
gedeone-octave <marco.vassallo@outlook.com>
parents:
diff changeset
37 if output != 0
0aefa30d4ce0 New function for the creation of the functionalspace
gedeone-octave <marco.vassallo@outlook.com>
parents:
diff changeset
38 error ("Compilation failed");
67
5a781e79bee1 Call new octave script instead of python script
gedeone-octave <marco.vassallo@outlook.com>
parents: 52
diff changeset
39 else
5a781e79bee1 Call new octave script instead of python script
gedeone-octave <marco.vassallo@outlook.com>
parents: 52
diff changeset
40 [output, textfile] = system (sprintf ("make -f Makefile_%s fs", var_prob));
5a781e79bee1 Call new octave script instead of python script
gedeone-octave <marco.vassallo@outlook.com>
parents: 52
diff changeset
41 if output != 0
5a781e79bee1 Call new octave script instead of python script
gedeone-octave <marco.vassallo@outlook.com>
parents: 52
diff changeset
42 display (text);
5a781e79bee1 Call new octave script instead of python script
gedeone-octave <marco.vassallo@outlook.com>
parents: 52
diff changeset
43 error ("Compilation failed");
5a781e79bee1 Call new octave script instead of python script
gedeone-octave <marco.vassallo@outlook.com>
parents: 52
diff changeset
44 endif
69
6dbe66dcf1c5 Add call to make clean inside octave script
gedeone-octave <marco.vassallo@outlook.com>
parents: 67
diff changeset
45 [output, textfile] = system (sprintf ("make -f Makefile_%s clean", var_prob));
67
5a781e79bee1 Call new octave script instead of python script
gedeone-octave <marco.vassallo@outlook.com>
parents: 52
diff changeset
46 if output != 0
5a781e79bee1 Call new octave script instead of python script
gedeone-octave <marco.vassallo@outlook.com>
parents: 52
diff changeset
47 display (text);
5a781e79bee1 Call new octave script instead of python script
gedeone-octave <marco.vassallo@outlook.com>
parents: 52
diff changeset
48 error ("Compilation failed");
5a781e79bee1 Call new octave script instead of python script
gedeone-octave <marco.vassallo@outlook.com>
parents: 52
diff changeset
49 endif
52
0aefa30d4ce0 New function for the creation of the functionalspace
gedeone-octave <marco.vassallo@outlook.com>
parents:
diff changeset
50 endif
0aefa30d4ce0 New function for the creation of the functionalspace
gedeone-octave <marco.vassallo@outlook.com>
parents:
diff changeset
51
0aefa30d4ce0 New function for the creation of the functionalspace
gedeone-octave <marco.vassallo@outlook.com>
parents:
diff changeset
52 endfunction