Answer:
Write all notes in google docs
Explanation:
Solar engineers work in any number of areas of engineering products that help harness energy from the sun. They may research, design, and develop new products, or they may work in testing, production, or maintenance. They may collect and manage data to help design solar systems.
Answer:
pneumatic power system
Explanation:
pneumatic power can be used to quietly operate power windows, door locks, power mirrors, and much much more, also negative pressure pneumatics (vacuum) is used to control many engine and fuel systems
Explanation:
<u>(a)</u>
<u>The measure of material's ability to conduct thermal energy (heat) is known as thermal conductivity.</u> For examples, metals have high thermal conductivity, it means that they are very efficient at conducting heat.<u> The SI unit of heat capacity is W/m.K.</u>
The expression for thermal conductivity is:

Where,
q is the heat flux
is the thermal conductivity
is the temperature gradient.
<u>(b)</u>
<u>Heat capacity for a substance is defined as the ratio of the amount of energy required to change the temperature of the substance and the magnitude of temperature change. The SI unit of heat capacity is J/K.</u>
The expression for Heat capacity is:

Where,
C is the Heat capacity
E is the energy absorbed/released
is the change in temperature
<u>(c)</u>
<u>Thermal diffusivity is defined as the thermal conductivity divided by specific heat capacity at constant pressure and its density. The Si unit of thermal diffusivity is m²/s.</u>
The expression for thermal diffusivity is:

Where,
is thermal diffusivity
is the thermal conductivity
is specific heat capacity at constant pressure
is density
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