1 |
jgs |
150 |
/* |
2 |
elspeth |
616 |
************************************************************ |
3 |
|
|
* Copyright 2006 by ACcESS MNRF * |
4 |
|
|
* * |
5 |
|
|
* http://www.access.edu.au * |
6 |
|
|
* Primary Business: Queensland, Australia * |
7 |
|
|
* Licensed under the Open Software License version 3.0 * |
8 |
|
|
* http://www.opensource.org/licenses/osl-3.0.php * |
9 |
|
|
* * |
10 |
|
|
************************************************************ |
11 |
jgs |
150 |
*/ |
12 |
|
|
|
13 |
jgs |
82 |
/**************************************************************/ |
14 |
|
|
|
15 |
|
|
/* Finley: ElementFile */ |
16 |
|
|
|
17 |
|
|
/* allocates an element file to hold elements of type id and with integration order order. */ |
18 |
|
|
/* use Finley_Mesh_allocElementTable to allocate the element table (Id,Nodes,Tag). */ |
19 |
|
|
|
20 |
|
|
/**************************************************************/ |
21 |
|
|
|
22 |
|
|
/* Author: gross@access.edu.au */ |
23 |
|
|
/* Version: $Id$ */ |
24 |
|
|
|
25 |
|
|
/**************************************************************/ |
26 |
|
|
|
27 |
|
|
#include "ElementFile.h" |
28 |
|
|
|
29 |
|
|
/**************************************************************/ |
30 |
|
|
|
31 |
bcumming |
730 |
#ifndef PASO_MPI |
32 |
|
|
Finley_ElementFile* Finley_ElementFile_alloc(ElementTypeId id,index_t order) |
33 |
|
|
#else |
34 |
|
|
Finley_ElementFile* Finley_ElementFile_alloc(ElementTypeId id,index_t order, Paso_MPIInfo *MPIInfo) |
35 |
|
|
#endif |
36 |
|
|
{ |
37 |
jgs |
82 |
extern Finley_RefElementInfo Finley_RefElement_InfoList[]; |
38 |
jgs |
123 |
dim_t NQ; |
39 |
jgs |
82 |
Finley_ElementFile *out; |
40 |
|
|
|
41 |
|
|
/* get the number of quadrature nodes needed to achieve integration order order: */ |
42 |
|
|
|
43 |
|
|
if (order<0) order=2*Finley_RefElement_InfoList[id].numOrder; |
44 |
|
|
NQ= Finley_RefElement_InfoList[id].getNumQuadNodes(order); |
45 |
jgs |
150 |
if (! Finley_noError()) return NULL; |
46 |
jgs |
82 |
|
47 |
|
|
/* allocate the return value */ |
48 |
|
|
|
49 |
jgs |
102 |
out=MEMALLOC(1,Finley_ElementFile); |
50 |
jgs |
82 |
if (Finley_checkPtr(out)) return NULL; |
51 |
|
|
out->ReferenceElement=NULL; |
52 |
|
|
out->LinearReferenceElement=NULL; |
53 |
|
|
out->numElements=0; |
54 |
|
|
out->Id=NULL; |
55 |
|
|
out->Nodes=NULL; |
56 |
|
|
out->Tag=NULL; |
57 |
|
|
out->Color=NULL; |
58 |
jgs |
123 |
out->minColor=0; |
59 |
|
|
out->maxColor=-1; |
60 |
jgs |
82 |
out->order = order; |
61 |
gross |
776 |
out->jacobeans=Finley_ElementFile_Jacobeans_alloc(); |
62 |
|
|
out->jacobeans_reducedS=Finley_ElementFile_Jacobeans_alloc(); |
63 |
|
|
out->jacobeans_reducedQ=Finley_ElementFile_Jacobeans_alloc(); |
64 |
|
|
out->jacobeans_reducedS_reducedQ=Finley_ElementFile_Jacobeans_alloc(); |
65 |
jgs |
82 |
|
66 |
bcumming |
730 |
#ifdef PASO_MPI |
67 |
|
|
out->MPIInfo = Paso_MPIInfo_getReference( MPIInfo ); |
68 |
|
|
out->elementDistribution = Finley_ElementDistribution_alloc( MPIInfo ); |
69 |
|
|
#endif |
70 |
gross |
532 |
|
71 |
jgs |
82 |
/* allocate the reference element: */ |
72 |
|
|
|
73 |
|
|
out->ReferenceElement=Finley_RefElement_alloc(id,NQ); |
74 |
jgs |
150 |
if (! Finley_noError()) { |
75 |
jgs |
82 |
Finley_ElementFile_dealloc(out); |
76 |
|
|
return NULL; |
77 |
|
|
} |
78 |
|
|
out->LinearReferenceElement=Finley_RefElement_alloc(Finley_RefElement_InfoList[id].LinearTypeId,NQ); |
79 |
jgs |
150 |
if (! Finley_noError()) { |
80 |
jgs |
82 |
Finley_ElementFile_dealloc(out); |
81 |
|
|
return NULL; |
82 |
|
|
} |
83 |
|
|
return out; |
84 |
|
|
} |
85 |
|
|
|
86 |
|
|
/* deallocates an element file: */ |
87 |
|
|
|
88 |
|
|
void Finley_ElementFile_dealloc(Finley_ElementFile* in) { |
89 |
|
|
if (in!=NULL) { |
90 |
|
|
#ifdef Finley_TRACE |
91 |
|
|
if (in->ReferenceElement!=NULL) printf("element file for %s is deallocated.\n",in->ReferenceElement->Type->Name); |
92 |
|
|
#endif |
93 |
|
|
Finley_RefElement_dealloc(in->ReferenceElement); |
94 |
|
|
Finley_RefElement_dealloc(in->LinearReferenceElement); |
95 |
|
|
Finley_ElementFile_deallocTable(in); |
96 |
gross |
776 |
Finley_ElementFile_Jacobeans_dealloc(in->jacobeans); |
97 |
|
|
Finley_ElementFile_Jacobeans_dealloc(in->jacobeans_reducedS); |
98 |
|
|
Finley_ElementFile_Jacobeans_dealloc(in->jacobeans_reducedQ); |
99 |
|
|
Finley_ElementFile_Jacobeans_dealloc(in->jacobeans_reducedS_reducedQ); |
100 |
bcumming |
730 |
#ifdef PASO_MPI |
101 |
|
|
Paso_MPIInfo_dealloc( in->MPIInfo ); |
102 |
|
|
Finley_ElementDistribution_dealloc( in->elementDistribution ); |
103 |
|
|
#endif |
104 |
jgs |
82 |
MEMFREE(in); |
105 |
|
|
} |
106 |
|
|
} |
107 |
|
|
/* |
108 |
|
|
* $Log$ |
109 |
jgs |
150 |
* Revision 1.6 2005/09/15 03:44:21 jgs |
110 |
|
|
* Merge of development branch dev-02 back to main trunk on 2005-09-15 |
111 |
|
|
* |
112 |
|
|
* Revision 1.5.2.1 2005/09/07 06:26:18 gross |
113 |
|
|
* the solver from finley are put into the standalone package paso now |
114 |
|
|
* |
115 |
jgs |
123 |
* Revision 1.5 2005/07/08 04:07:48 jgs |
116 |
|
|
* Merge of development branch back to main trunk on 2005-07-08 |
117 |
|
|
* |
118 |
jgs |
102 |
* Revision 1.4 2004/12/15 07:08:32 jgs |
119 |
jgs |
97 |
* *** empty log message *** |
120 |
jgs |
123 |
* Revision 1.1.1.1.2.2 2005/06/29 02:34:49 gross |
121 |
|
|
* some changes towards 64 integers in finley |
122 |
jgs |
82 |
* |
123 |
jgs |
123 |
* Revision 1.1.1.1.2.1 2004/11/24 01:37:13 gross |
124 |
|
|
* some changes dealing with the integer overflow in memory allocation. Finley solves 4M unknowns now |
125 |
jgs |
97 |
* |
126 |
jgs |
82 |
* |
127 |
jgs |
123 |
* |
128 |
jgs |
82 |
*/ |