Block: LoopBreaker



PIC




Inports


In

Input In(k)






Outports


Out

Output Out(k)=In(k-1)




Description:

Block to break algebraic loops.

Implementations:
FiP16 16 Bit Fixed Point Implementation
FiP32 32 Bit Fixed Point Implementation
Float32 32 Bit Floating Point Implementation
Float64 64 Bit Floating Point Implementation

Implementation: FiP16


Name FiP16
ID 481
Revision 0.1
C lename LoopBreaker_FiP16.c
H lename LoopBreaker_FiP16.h

16 Bit Fixed Point Implementation

Data Structure:

typedef struct { 
     uint16        ID; 
     int16         *In; 
     int16         Out; 
} LOOPBREAKER_FIP16;

Implementation: FiP32


Name FiP32
ID 482
Revision 0.1
C lename LoopBreaker_FiP32.c
H lename LoopBreaker_FiP32.h

32 Bit Fixed Point Implementation

Data Structure:

typedef struct { 
     uint16        ID; 
     int32         *In; 
     int32         Out; 
} LOOPBREAKER_FIP32;

Implementation: Float32


Name Float32
ID 483
Revision 0.1
C lename LoopBreaker_Float32.c
H lename LoopBreaker_Float32.h

32 Bit Floating Point Implementation

Data Structure:

typedef struct { 
     uint16        ID; 
     float32       *In; 
     float32       Out; 
} LOOPBREAKER_FLOAT32;

Implementation: Float64


Name Float64
ID 484
Revision 0.1
C lename LoopBreaker_Float64.c
H lename LoopBreaker_Float64.h

64 Bit Floating Point Implementation

Data Structure:

typedef struct { 
     uint16        ID; 
     float64       *In; 
     float64       Out; 
} LOOPBREAKER_FLOAT64;