hp2FEM  0.1
include/interpolation/collocationpoints1d/collocationPoints1D.h
00001 #ifndef _COLLOCATIONPOINTS1D_H_
00002 #define _COLLOCATIONPOINTS1D_H_
00003 // ---------------------------------------------
00004 // company   : 
00005 // user      : 
00006 // date      : 22 Mar 2015 17:23
00007 // file      : collocationPoints1D.h
00008 // markers   : Full
00009 // language  : C++
00010 // generator : Metamill 6.0
00011 // ---------------------------------------------
00012 
00013 //#UBLK-BEG-HEADERH
00014 //==============================================================
00015 // Description : 
00016 //--------------------------------------------------------------
00017 // Author      : Gilberto Luis
00018 // Created     : 17 Mar 2011
00019 //--------------------------------------------------------------
00020 // Change history : 
00021 //   17 Mar 2011 (Gilberto Luis) Initial version generated
00022 //
00023 //==============================================================
00024 //#UBLK-END-HEADERH
00025 
00026 /*=================================================================================================
00027 =                                                                                                 =
00028 =       Copyright 2010-2015  Marco Lucio Bittencourt / Fabiano Fernandes Bargos                       =
00029 =                        Gilberto Luis Valente / Jorge Luis Suzuki / Allan Patrick Cordeiro Dias  =
00030 =                                                                                                 =
00031 =       Licensed under the Apache License, Version 2.0 (the "License");                               =
00032 =       you may not use this file except in compliance with the License.                              =
00033 =       You may obtain a copy of the License at                                                       =
00034 =                                                                                                 =
00035 =               http://www.apache.org/licenses/LICENSE-2.0                                                =
00036 =                                                                                                 =
00037 =       Unless required by applicable law or agreed to in writing, software                           =
00038 =       distributed under the License is distributed on an "AS IS" BASIS,                             =
00039 =       WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.                      =
00040 =       See the License for the specific language governing permissions and                           =
00041 =       limitations under the License.                                                                =
00042 =                                                                                                 =
00043 =================================================================================================*/
00044 
00045 
00046 #include "ds/Vector.h"
00047 #include "ds/Matrix.h"
00048 #include "enumerations/QuadCollocType_E.h"
00049 #include "interpolation/collocationpoints1d/GaussJacobiCollocationPoints1D.h"
00050 #include "interpolation/collocationpoints1d/NewtonCotesCollocationPoints1D.h"
00051 
00052 
00062 class collocationPoints1D
00063 {
00064 //#UBLK-BEG-CLASSDEF mm:23ea5671-f649-11df-85b0-e9a34136af77
00065 //#UBLK-END-CLASSDEF
00066 
00067  public:
00068 
00069    // METHOD=mm:2482d356-f649-11df-85b0-e9a34136af77
00070    collocationPoints1D();
00071 
00072    // METHOD=mm:00eff36f-1a7f-11e0-865c-96e3ec42e01a
00073    ~collocationPoints1D();
00074 
00075    // METHOD=mm:2482d357-f649-11df-85b0-e9a34136af77
00076    void GetCollocCoordinates(QuadCollocType_E CollocType, unsigned long Alpha, unsigned long Beta, unsigned long PolyOrder, unsigned long& NumCoordinates, double*const CollocCoords);
00077 
00078 
00079  protected:
00080 
00084    // attr=mm:d2bad0a7-1a77-11e0-865c-96e3ec42e01a
00085    GaussJacobiCollocationPoints1D GJColloc;
00086 
00090    // attr=mm:f5e58bd5-1a77-11e0-865c-96e3ec42e01a
00091    NewtonCotesCollocationPoints1D NCColloc;
00092 
00093 
00094  private:
00095 
00096 //#UBLK-BEG-CLASSMEMB mm:23ea5671-f649-11df-85b0-e9a34136af77
00097 //#UBLK-END-CLASSMEMB
00098 };
00099 
00100 //#UBLK-BEG-GLOBALH
00101 //*** Removed methods: 13 Oct 2011 11:17
00102 //---
00103 //uuid=mm:57382ccd-f602-4e22-8eaf-6d2ccb045988
00104 //   collocationPoints1D operator=(collocationPoints1D& Instance);
00105 
00106 //#UBLK-END-GLOBALH
00107 
00108 
00109 #endif // _COLLOCATIONPOINTS1D_H_
 All Classes Files Functions Variables Typedefs Friends Defines