SQLITE_NOTICE(283): recovered 5 frames from WAL file /data/mtt.fossil-wal
File mttroot/mtt/lib/cr/r/oneway.cr artifact a74db11764 part of check-in 19ef91e312
%SUMMARY oneway One way constitutive relationship eg Diode %DESCRIPTION Parameter 1 is a large number being the forward gain %DESCRIPTION -- the reciprocal is the backward gain %DESCRIPTION The input must be an effort %DESCRIPTION Typical use is an R component with effort input % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % %% Version control history % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % %% $Id$ % %% $Log$ % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% OPERATOR oneway; %Input has flow causality FOR ALL r, input LET oneway(r, effort, 1, input, flow, 1) = ((1 - sign(input))/2)*r*input; %Input has effort causality FOR ALL r, input LET oneway(r, flow, 1, input, effort, 1) = ((1 - sign(input))/2)*(1/r)*input;