I think the answer would be A if its wrong I’m sorry
I think that it is all of the above
Answer:
The critical length of surface flaw = 6.176 mm
Explanation:
Given data-
Plane strain fracture toughness Kc = 29.6 MPa-m1/2
Yield Strength = 545 MPa
Design stress. =0.3 × yield strength
= 0.3 × 545
= 163.5 MPa
Dimensionless parameter. Y = 1.3
The critical length of surface flaw is given by
= 1/pi.(Plane strain fracture toughness /Dimensionless parameter× Design Stress)^2
Now putting values in above equation we get,
= 1/3.14( 29.6 / 1.3 × 163.5)^2
=6.176 × 10^-3 m
=6.176 mm
Answer:
Explanation gives the answer
Explanation:
% Using MATLAB,
% Matlab file : fieldtovar.m
function varargout = fieldtovar(S)
% function that accepts single structure as input, assigning each
% of the field values to user-defined variables
fields = fieldnames(S); % get the field names of the input structure
% check if number of user-defined variables and number of fields in
% structure are equal
if nargout == length(fields)
% if equal assign each value of structure to user-defined varable
for i=1:nargout
varargout{i} = getfield(S,fields{i});
end
else
% if not equal display an error message
error('The number of output variables does not equal the number of fields');
end
end
%This brings an end to the program