Question:
The question is not complete. See the complete question and the answer below.
A well that pumps at a constant rate of 0.5m3/s fully penetrates a confined aquifer of 34 m thickness. After a long period of pumping, near steady state conditions, the measured drawdowns at two observation wells 50m and 100m from the pumping well are 0.9 and 0.4 m respectively. (a) Calculate the hydraulic conductivity and transmissivity of the aquifer (b) estimate the radius of influence of the pumping well, and (c) calculate the expected drawdown in the pumping well if the radius of the well is 0.4m.
Answer:
T = 0.11029m²/sec
Radius of influence = 93.304m
expected drawdown = 3.9336m
Explanation:
See the attached file for the explanation.
Answer:
1. Location of enemy ground troops - EARTH OBSERVING.
Using earth observing satellite imagery, the military can observe vast expanses of land and in so doing, find the location of enemy ground troops.
2. Routine reconnaissance of an unfamiliar climate - WEATHER
In other to find out more about the climate of an area, a weather satellite can be used to observe the areas and its changing weather patterns.
3. Analyze waterways in an unfamiliar location - NAVIGATION
Using navigation satellites, navigation conduits such as roads and waterways can be observed.
4. Provide warning of an attack - COMMUNICATION.
Communications satellites enable people to communicate over great distances and so can be used by the military to warn of an impending attack.
Answer:
Codes for each of the problems are explained below
Explanation:
PROBLEM 1 IN C++:
#include<iostream>
using namespace std;
//fib function that calculate nth integer of the fibonacci sequence.
void fib(int n){
// l and r inital fibonacci values for n=1 and n=2;
int l=1,r=1,c;
//if n==1 or n==2 then print 1.
if(n==1 || n==2){
cout << 1;
return;
}
//for loop runs n-2 times and calculates nth integer of fibonacci sequence.
for(int i=0;i<n-2;i++){
c=l+r;
l=r;
r=c;
cout << "(" << i << "," << c << ") ";
}
//prints nth integer of the fibonacci sequence stored in c.
cout << "\n" << c;
}
int main(){
int n; //declared variable n
cin >> n; //inputs n to find nth integer of the fibonacci sequence.
fib(n);//calls function fib to calculate and print fibonacci number.
}
PROBLEM 2 IN PYTHON:
def fib(n):
print("fib({})".format(n), end=' ')
if n <= 1:
return n
else:
return fib(n - 1) + fib(n - 2)
if __name__ == '__main__':
n = int(input())
result = fib(n)
print()
print(result)
Answer:
Modern and smart materials for making the products are improved by developing new materials and find new uses for the existing. As, modern industrialization society is increased demand and quality of the product.
Two modern's materials are:
Carbon Fiber: As, carbon fiber is a strong material and it is light in weight. Designers used it because it is five times strong as steel and two times as stiff. Carbon fiber is basically made out of very thin strands of carbon.
Fiber Optics: It is a new technology as, it is used as transparent solid to transmitted light signals.
Answer:
Divide one teeth count by the other.
Now that you know how many teeth are on each gear, you can find the gear ratio relatively simply. Divide the driven gear teeth by the drive gear teeth. Depending on your assignment, you may write your answer as a decimal, a fraction, or in ratio
Explanation: