Answer:
It is a well known fact that the earth rotates around the sun in an inclined axis which is approximately 23 degree. The inclined nature of earth axis causes variation in the solar heat received at any place on the earth surface. The hemisphere facing the sun due to this axial tilt, gets higher sun energy as compared to the opposite side. The hemisphere which faces the sun will experience summer whereas the hemisphere away from sun will experience winter.
In each of the hemisphere the polar areas will receive higher radiation and longer daytime during the summer season. However it has been observed that there is difference in radiation received at different areas of earth surface and radiated. The tropical areas have lower reflectance and thus a large part of incoming solar radiation have been absorbed along the tropics. The poles though have longer daytime during summer and hence greater solar radiation but due to high reflectance radiate more energy. Thus the tropical areas have surplus energy as compared to deficit energy areas of poles. This difference in energy creates a heat imbalance.
This net heat difference between poles and equator gives rise to a global circulation system leading to flow of heat from the net energy excess areas to deficit areas. This circulation takes place through atmosphere as well as oceans and different process of climate viz. evaporation, transpiration, rainfall, wind, convection, oceanic circulations etc work as tools of this system
Answer:
Gravitational Potential =58.914 KJ
Explanation:
We know that

Given mass = 251 kg
Height= 24 m
g is acceleration due to gravity = 
Applying values in the equation we get



The advantages that can be associated to
drawings and symbols over written descriptions in engineering design and prototyping process are;
Communicate design ideas as well as technical information to engineers.
Symbols and drawings can be universal which means it is easy to interpret any where by professionals.
- An engineering drawing serves as complex dimensional object and symbol use by engineer to communicate.
- Drawings and symbols makes it easier to communicate design ideas and technical information to engineers and and how the process will go.
Therefore, drawings and symbols is universal to all engineer unlike written one.
Learn more at:
brainly.com/question/20925313?referrer=searchResults
Answer:
Tech A
Explanation:
The amount of energy required to apply the same force with a 1:1 ratio is divided into 4, so you can apply 4 times as much force than a 1:1 ratio. efficiency and speed come into play here, but assuming the machine powering the gear can run at a unlimited RPM, 4:1 will have more force and a slower output speed than a 2:1 ratio.
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