addcapa(3) add a capacitance to a signal

SYNOPSYS

#include "mlo.h"
void addcapa(ptsig, ctot)
losig_list *ptsig;
float ctot;

PARAMETERS

ptfig
Pointer to the signal in which the capacitance should be added
ctot
Total capacitance

DESCRIPTION

addcapa add the capa value to ptsig->CAPA.

EXAMPLE

#include "mlo.h"
void more_capa(pt, i, c)
lofig_list *pt;
long i;
float c;
{
   addcapa(getlosig(pt, i), c);
}