00001 // -*- C++ -*- 00002 // 00003 // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 00004 // 00005 // Fehmi Cirak 00006 // California Institute of Technology 00007 // (C) 2004 All Rights Reserved 00008 // 00009 // <LicenseText> 00010 // 00011 // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 00012 // 00013 #ifndef SBEAMTIMESTEP_H 00014 #define SBEAMTIMESTEP_H 00015 00016 00017 namespace shells { 00018 double sbeamTimeStep(double h, 00019 double young, 00020 double density, 00021 double thickness); 00022 00023 struct SElementS; 00024 void selementMaterialPropEstimates(SElementS *element, 00025 double *young, 00026 double *density); 00027 } 00028 00029 00030 #endif