
scope = 1.2;
wave_amp = 4.75;
curr_fact = 1.0;

suffix = 'SeahorseLargeFloatSME';   


path = ['./',suffix,'/'];
load([path,'DynRes-',num2str(wave_amp),'A-',num2str(100*curr_fact),'c-',num2str(scope),'s-',suffix,'.mat']);



figure('PaperPositionMode','manual','PaperType','usletter','PaperPosition',[0 0 11 8.5],'PaperOrientation','landscape'); 
plot(s,T_s)
xlabel('meters from anchor');
ylabel('lbs');
title(['Mooring Tensions:  Wave Amp = ',wave_amp,' current factor = ',curr_fact*100,'% scope = ',scope]);

print('-depsc2',[path,'Tensions-',num2str(wave_amp),'A-',num2str(100*curr_fact),'c-',num2str(scope),'s-',suffix,'.eps']);
