In Japan, Shinzato’s fomula for calculating Kt/V, an indicator of efficiency of dialysis, is recommended by JSDT. Since integral equation is used to solve Shinzato’s method, you couldn’t solve algebraically. In K/DOQQI, it is usual to solve Kt/V with Daugirdas’ method. Shinzato has described that Daugirdas’ Kt/V is similar to Shinzato’s Kt/V.
Execute the procedure as following;
CREATE FUNCTION Function_KtV ( @preBUN DEC(4, 1) , @postBUN DEC(4, 1) , @preWeight DEC(4, 1) , @postWeight DEC(4, 1) , @DialysisDuration int ) RETURNS DEC(3,2) AS BEGIN DECLARE @KtV DEC(3, 2) SELECT @KtV = - LOG(@postBUN / @preBUN - 0.008 * @DialysisDuration / 60) + (4 - (3.5 * @postBUN / @preBUN)) * ((@preWeight - @postWeight) / @postWeight) RETURN @KtV END GO
References: JSDT 29 (12): 1511-1516, 1996
Second Generation Logarithmic Estimates of Single-Pool Variable Volume