oaLumpedElmore.h

Go to the documentation of this file.
00001 // *****************************************************************************
00002 // *****************************************************************************
00003 // oaLumpedElmore.h
00004 //
00005 // This file contains the definition for the oaLumpedElmore class, which
00006 // represents a reduced parasitic model for a particular driver, with a total
00007 // capacitance and an Elmore delay (the first moment of the impulse response of
00008 // the interconnect parasitics) from that driver to each of the receivers on the
00009 // net.
00010 //
00011 // *****************************************************************************
00012 // Except as specified in the OpenAccess terms of use of Cadence or Silicon
00013 // Integration Initiative, this material may not be copied, modified,
00014 // re-published, uploaded, executed, or distributed in any way, in any medium,
00015 // in whole or in part, without prior written permission from Cadence.
00016 //
00017 //                Copyright 2002-2005 Cadence Design Systems, Inc.
00018 //                           All Rights Reserved.
00019 //
00020 //  $Author: icftcm $
00021 //  $Revision: #1 $
00022 //  $Date: 2010/08/09 $
00023 //  $State: Exp $
00024 // *****************************************************************************
00025 // *****************************************************************************
00026 
00027 
00028 
00029 #if !defined(oaLumpedElmore_P)
00030 #define oaLumpedElmore_P
00031 
00032 
00033 
00034 // *****************************************************************************
00035 // Nested includes
00036 // *****************************************************************************
00037 #include "oaReducedModel.h"
00038 
00039 
00040 
00041 // *****************************************************************************
00042 // Declare and define types in the OpenAccess namespace.
00043 // *****************************************************************************
00044 BEGIN_OA_NAMESPACE
00045 
00046 
00047 
00048 // *****************************************************************************
00049 // oaLumpedElmore
00050 // *****************************************************************************
00051 class OA_DESIGN_DLL_API oaLumpedElmore : public oaReducedModel {
00052 public:
00053     static oaLumpedElmore                   *create(oaDesignObject          *driver,
00054                                                     const oaAnalysisPoint   *ap,
00055                                                     oaFloat                 totalCap);
00056 
00057     static oaLumpedElmore                   *find(const oaDesignObject  *driver,
00058                                                   const oaAnalysisPoint *ap);
00059 
00060     void                                    setTotalCap(oaFloat value);
00061     oaFloat                                 getTotalCap() const;
00062 
00063     oaCollection<oaElmore, oaLumpedElmore>  getElmores() const;
00064 };
00065 
00066 
00067 
00068 // *****************************************************************************
00069 // Design Traits.
00070 // *****************************************************************************
00071 template<>
00072 class oaTraits<oaLumpedElmore> {
00073 public:
00074     typedef oaReducedModTypeEnum    modTypeType;
00075     typedef oaReducedModel          parentType;
00076     enum {dtIndex = oacReducedModelDataType};
00077     enum {dataTypeEnumVal = oacReducedModelDataType};
00078     enum {dbType = oacDesignDBType};
00079     enum {domain = oacNoDomain};
00080     enum {isMultiDomain = false};
00081     enum {isConcrete = true};
00082     enum {objectTypeEnumVal = oacLumpedElmoreType};
00083 };
00084 
00085 
00086 
00087 END_OA_NAMESPACE
00088 
00089 #endif

Return to top of page