function [ curvature ] = S( k )
%UNTITLED7 Summary of this function goes here
%   Detailed explanation goes here
    if (k == 1)
        curvature = .025;
    elseif (k ==2)
        curvature = -.025;
    else 
        curvature = 10;
    end
end

