Changeset 3591


Ignore:
Timestamp:
04/21/10 11:17:27 (15 years ago)
Author:
seroussi
Message:

no matice, matpar or node configuration in beam and sing elements

Location:
issm/trunk/src/c/objects
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk/src/c/objects/Beam.cpp

    r3570 r3591  
    738738}
    739739/*}}}*/
    740 /*FUNCTION Beam::MaticeConfiguration{{{1*/
    741 void  Beam::MaticeConfiguration(Matice* beam_matice,int beam_matice_offset){
    742 
    743         /*dynamic objects pointed to by hooks: */
    744         Matice* matice=NULL;
    745 
    746         /*recover objects from hooks: */
    747         matice=(Matice*)hmatice.delivers();
    748        
    749         ISSMERROR("not supported yet!");
    750 
    751         /*matice=beam_matice;
    752         matice_offset=beam_matice_offset;*/
    753 }
    754 /*}}}*/
    755 /*FUNCTION Beam::MatparConfiguration{{{1*/
    756 void  Beam::MatparConfiguration(Matpar* beam_matpar,int beam_matpar_offset){
    757 
    758         /*dynamic objects pointed to by hooks: */
    759         Matpar* matpar=NULL;
    760 
    761         /*recover objects from hooks: */
    762         matpar=(Matpar*)hmatpar.delivers();
    763 
    764         ISSMERROR("not supported yet!");
    765 
    766         /*matpar=beam_matpar;
    767         matpar_offset=beam_matpar_offset;*/
    768 
    769 }
    770 /*}}}*/
    771740/*FUNCTION Beam::Misfit{{{1*/
    772741double Beam::Misfit(void*,int,int){
     
    780749}
    781750/*}}}*/
    782 /*FUNCTION Beam::NodeConfiguration{{{1*/
    783 void  Beam::NodeConfiguration(int* beam_node_ids,Node* beam_nodes[2],int* beam_node_offsets){
    784 
    785         /*dynamic objects pointed to by hooks: */
    786         Node**  nodes=NULL;
    787 
    788         /*recover objects from hooks: */
    789         nodes=(Node**)hnodes.deliverp();
    790 
    791         ISSMERROR("not supported yet!");
    792 
    793         /*int i;
    794         for(i=0;i<2;i++){
    795                 node_ids[i]=beam_node_ids[i];
    796                 nodes[i]=beam_nodes[i];
    797                 node_offsets[i]=beam_node_offsets[i];
    798         }*/
    799 
    800 }
    801 /*}}}*/
    802751/*FUNCTION Beam::SurfaceArea{{{1*/
    803752double Beam::SurfaceArea(void*,int,int){
  • issm/trunk/src/c/objects/Beam.h

    r3529 r3591  
    7171                void* GetMatPar();
    7272
    73                 void  NodeConfiguration(int* beam_node_ids,Node* beam_nodes[2],int* beam_node_offsets);
    74                 void  MaticeConfiguration(Matice* matice,int matice_offset);
    75                 void  MatparConfiguration(Matpar* matpar,int matpar_offset);
    7673                void  ComputeBasalStress(Vec sigma_b,void* inputs,int analysis_type,int sub_analysis_type);
    7774                void  ComputePressure(Vec p_g,void* inputs,int analysis_type,int sub_analysis_type);
  • issm/trunk/src/c/objects/Sing.cpp

    r3570 r3591  
    590590}
    591591/*}}}*/
    592 /*FUNCTION Sing::MaticeConfiguration {{{1*/
    593 void  Sing::MaticeConfiguration(Matice* sing_matice,int sing_matice_offset){
    594 
    595         /*dynamic objects pointed to by hooks: */
    596         Matice* matice=NULL;
    597 
    598         /*recover objects from hooks: */
    599         matice=(Matice*)hmatice.delivers();
    600        
    601         ISSMERROR("not supported yet!");
    602 
    603         /*matice=sing_matice;
    604         matice_offset=sing_matice_offset;*/
    605 }
    606 /*}}}*/
    607 /*FUNCTION Sing::MatparConfiguration {{{1*/
    608 void  Sing::MatparConfiguration(Matpar* sing_matpar,int sing_matpar_offset){
    609 
    610         /*dynamic objects pointed to by hooks: */
    611         Matpar* matpar=NULL;
    612 
    613         /*recover objects from hooks: */
    614         matpar=(Matpar*)hmatpar.delivers();
    615 
    616         ISSMERROR("not supported yet!");
    617 
    618         /*matpar=sing_matpar;
    619         matpar_offset=sing_matpar_offset;*/
    620 
    621 }
    622 /*}}}*/
    623592/*FUNCTION Sing::Misfit {{{1*/
    624593double Sing::Misfit(void*, int,int){
  • issm/trunk/src/c/objects/Sing.h

    r3529 r3591  
    6565                void  CreatePVectorDiagnosticHutter(Vec pg,void* inputs,int analysis_type,int sub_analysis_type);
    6666                void* GetMatPar();
    67                 void  NodeConfiguration(int sing_node_id,Node* sing_node,int sing_node_offset);
    68                 void  MaticeConfiguration(Matice* matice,int matice_offset);
    69                 void  MatparConfiguration(Matpar* matpar,int matpar_offset);
    7067                void  ComputeBasalStress(Vec sigma_b,void* inputs,int analysis_type,int sub_analysis_type);
    7168                void  ComputePressure(Vec p_g,void* inputs,int analysis_type,int sub_analysis_type);
Note: See TracChangeset for help on using the changeset viewer.