Skip to content

Commit

Permalink
Thicker lines and titles corrections
Browse files Browse the repository at this point in the history
  • Loading branch information
dciliberti committed Aug 29, 2019
1 parent 5c6e15b commit c089698
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions performanceCharts.m
Original file line number Diff line number Diff line change
Expand Up @@ -107,17 +107,17 @@
plot3(V10(:,3)./scale,V10(:,1),V10(:,5),'k--')
plot3(V11(:,3)./scale,V11(:,1),V11(:,5),'k--')
plot3(V12(:,3)./scale,V12(:,1),V12(:,5),'k--')
plot3(limRPM,limCur,limPow,'k-','LineWidth',2)
% plot3(limRPM,limCur,limPow,'k-','LineWidth',2)

for i = 1:numel(condition)
% create a temporary variable to access part of cell data
tempMat = condition{i};
conditionCurves{i} = plot3(tempMat(:,3),tempMat(:,4),tempMat(:,2)+20,...
'o-','LineWidth',1.5,'MarkerEdgeColor','black'); %#ok<SAGROW>
'-o','LineWidth',3.0,'MarkerSize',3,'MarkerEdgeColor','black'); %#ok<SAGROW>
end

hold off, grid on, view(-20,30)
xlabel('RPM'), ylabel('Current, A'), zlabel('Output power, W')
xlabel('RPM'), ylabel('Current, A'), zlabel('Shaft power, W')
colorbar
legend([conditionCurves{:}],conditionLabels,'Location','Best')

Expand Down Expand Up @@ -170,19 +170,19 @@
plot(V10(:,3)./scale,V10(:,1),'k--')
plot(V11(:,3)./scale,V11(:,1),'k--')
plot(V12(:,3)./scale,V12(:,1),'k--')
plot(limRPM,limCur,'k-','LineWidth',2)
% plot(limRPM,limCur,'k-','LineWidth',2)

for i = 1:numel(condition)
% create a temporary variable to access part of cell data
tempMat = condition{i};
conditionCurves{i} = plot(tempMat(:,3),tempMat(:,4),...
'o-','LineWidth',1.5,'MarkerEdgeColor','black');
'o-','LineWidth',3.0,'MarkerSize',3,'MarkerEdgeColor','black');
end

hold off
clabel(C,H,'FontSize',15,'Color','white')
xlabel('RPM'), ylabel('Current, A'), title('Output power contour, W')
colorbar
xlabel('RPM'), ylabel('Current, A'), title('Shaft power contour, W')
% colorbar
legend([conditionCurves{:}],conditionLabels,'Location','Best')

% Annotations on contour
Expand Down Expand Up @@ -247,13 +247,13 @@
plot3(V10(:,3)./scale,V10(:,4),V10(:,6),'k--')
plot3(V11(:,3)./scale,V11(:,4),V11(:,6),'k--')
plot3(V12(:,3)./scale,V12(:,4),V12(:,6),'k--')
plot3(limRPM,limMom,limEta,'k-','LineWidth',2)
% plot3(limRPM,limMom,limEta,'k-','LineWidth',2)

for i = 1:numel(condition)
% create a temporary variable to access part of cell data
tempMat = condition{i};
conditionCurves{i} = plot3(tempMat(:,3),tempMat(:,5),tempMat(:,6)+2,...
'o-','LineWidth',1.5,'MarkerEdgeColor','black');
'o-','LineWidth',3.0,'MarkerSize',3,'MarkerEdgeColor','black');
end

hold off, grid on, view(-20,30)
Expand Down Expand Up @@ -310,19 +310,19 @@
plot(V10(:,3)./scale,V10(:,4),'k--')
plot(V11(:,3)./scale,V11(:,4),'k--')
plot(V12(:,3)./scale,V12(:,4),'k--')
plot(limRPM,limMom,'k-','LineWidth',2)
% plot(limRPM,limMom,'k-','LineWidth',2)

for i = 1:numel(condition)
% create a temporary variable to access part of cell data
tempMat = condition{i};
conditionCurves{i} = plot(tempMat(:,3),tempMat(:,5),...
'o-','LineWidth',1.5,'MarkerEdgeColor','black');
'o-','LineWidth',3.0,'MarkerSize',3,'MarkerEdgeColor','black');
end

hold off
clabel(C,H,'FontSize',15,'Color','black')
xlabel('RPM'), ylabel('Torque, Ncm'), title('Motor Efficiency')
colorbar
% colorbar
legend([conditionCurves{:}],conditionLabels,'Location','Best')

% Annotations on contour
Expand Down

0 comments on commit c089698

Please sign in to comment.