Engineering Homework Help

TUT Civil Engineering Own Idealism Discussion

 

you will need to answering the following questions:

1.Why did you chose this area of engineering?

2.Tell me about the most challenging project you have worked on?

3.What is your greatest strength as an engineer?

4.Describe a time when you had a heavy work load and competing deadlines. How did you set priorities?

5.Where do you see yourself in 5 years from now?

Engineering Homework Help

University of The Cumberlands Algorithms & Characteristics of Data Discussion

 

I’m working on a information technology exercise and need a reference to help me learn.

  1. What are the characteristics of data?
  2. Compare the difference in each of the following clustering types: prototype-based, density-based, graph-based.
  3. What is a scalable clustering algorithm?
  4. How do you choose the right algorithm?

Engineering Homework Help

Mechanical Engineering Question

 

Hello,

I have a mechanical engineering assignment that’s in 30 minutes and I have 2 hours to complete it. I am looking for a long term mechanical engineering tutor that can help me through this and for future assignments.

I’ve attached examples/review problems of how the assignment will look like. The assignment is going to be 10-12 questions when I get it. Anyone can help with this?

Here is the book:

http://civilittee-hu.com/uploads/1/Static/book14th.pdf

Engineering Homework Help

EEGR 390 Job Shop Scheduling Program Model

 

Please do the attached individually. This will solidify your understanding of the related statistical concepts of the Job Shop Models. For this assignment you will submit the following:

  • Listing of program code
  • Output from compilation and execution of code
  • Summary of results

Engineering Homework Help

Stony Brook University MATLab Coding Project Report

 

Hi, I need help on a programming project and need two things, a correct coding file and the problem solved by hand.

I have a template made to make the coding easier but I need you to put in the right numbers where the * are in the template

Please provide notes for the mathematical approach (solving by hand)

Please submit a .m file of the code and a separate file for the handwritten work

Here is the template, fill in the blanks where the * are with the correct value:

% Numerical Integration
% --------------------------Function description--------------------------%
% central_fc():         Calculates central finite difference
% forward_fc():         Calculates forward finite difference
% backward_fc():        Calculates backward finite difference
% trapezoid():          Integration by using Trapezoidal Rule
% simpson():            Integration by using Simpson's 1/3
% ------------------------------------------------------------------------%
clc;
clear all;

% Given data, V
V = [4.1 4.7 5.23;
    2.2 2.5 2.7;
    1.775 1.995 2.125;
    1.35 1.49 1.55;
    1.1 1.2 1.24;
    0.90 0.99 1.03;
    0.79 0.87 0.905;
    0.68 0.75 0.78;
    0.61 0.675 0.7];

% Given data, P
P = [5;10;15;20;25;30;35;40;45];
T = 400;        % We estimate enthalpy at T = 400 K
n = length(P);  % length of P
col = 2;        % column index of V where T = 400 K
delT = 50;      % temperature increment = 50 K

% Calculate derivative of V by calling FD(Finite Differencing)function
% dVdT = central_fd(*,*,*);
% dVdT = forward_fd(*,*,*);
dVdT = backward_fd(*,*,*);

% Calculate function to be integrated: [V-T*(dV/dT)]
for i = 1:*
    *(i) = *(*,*) - T*dVdT(*);
end

% Integrate function B along P
H = trapezoid(P,B);  % by Trapezoidal rule
% H = simpson(P,B);  % by Simpson's 1/3

% Print result
fprintf('Enthalpy, H = %fn',H);

function [*] = central_fd(*,*,*)
% Input
% x: given data (9x3)
% h: increment (temperature)
% c: column index where T = 400 K
% Output
% dvdt: derivative of v
    n = height(x); % n = 9
    dvdt = zeros(9,1);
    for i = 1:n
        dvdt(i) = ( x(i,c+1) - x(i,c-1) ) / ( 2*h );
    end
end
function [*] = forward_fd(*,*,*)
% Input
% x: given data (9x3)
% h: increment (temperature)
% c: column index where T = 400 K
% Output
% dvdt: derivative of v
    n = height(x); % n = 9
    dvdt = zeros(9,1);
    for i = 1:n
        dvdt(i) = ( x(i,c+1) - x(i,c) ) / ( h );
    end
end
function [*] = backward_fd(*,*,*)
% Input
% x: given data (9x3)
% h: increment (temperature)
% c: column index of x where T = 400 K
% Output
% dvdt: derivative of v
    n = height(x); % n = 9
    dvdt = zeros(9,1);
    for i = 1:n
        dvdt(i) = ( x(i,c) - x(i,c-1) ) / ( h );
    end
end

function [*] = trapezoid(*,*)
% Input
% p: pressure data
% b: function to be integrated [V-T*(dV/dT)]
% Output
% H: result of integration
% ***Note that index of this code starts 1, not 0.
    n = length(p);
    N = n-1;    % the number of segments
    
    % Adding internal values
    b_sum = 0.0;
    for j = 2:N
        b_sum = b_sum + b(j);
    end

    H = (p(n)-p(1)) * (b(1) + 2*b_sum + b(n))/(2*N);

end

function [*] = simpson(*,*)
% Input
% p: pressure data
% b: function to be integrated [V-T*(dV/dT)]
% Output
% H: result of integration
% ***Note that index of this code starts 1, not 0.
    n = length(p);
    N = n-1;    % the number of segments
    
    % Perform summation of values of even index
    b1_sum = 0.0;
    for j = 2:2:N
        b1_sum = b1_sum + b(j);
    end
    % Perform summation of values of odd index
    b2_sum = 0.0;
    for j = 3:2:N-1
        b2_sum = b2_sum + b(j);
    end
    
    H = (p(n)-p(1)) * (b(1) + 4*b1_sum + 2*b2_sum + b(n))/(3*N);
end

Engineering Homework Help

University of Abudhabi Ethical Way of The Artificial Intelligence Case Study PPT

 

An AI Ethics Case Study

i need a presentation that descripe the ehical way of the AI

Concern is high over possible misuses of new AI technology which generates text without human intervention.

Engineering Homework Help

Several Subgraphs Connected Components Exam Practice

 

For each of the following subproblems, briefly explain how you would solve each. You do not need to write pseudocode. Give a big-O estimate on your solution with a very brief justification.

Given a graph G=(V,E) with n nodes and m edges, determine the number of connected components in G.

Given a connected graph G=(V,E) with n nodes and m edges, determine whether it is possible to color all of the nodes in V either blue or gold such that if (v,w)∈E, then v and w do not have the same color.

Engineering Homework Help

ECC Principle of Virtual Work for Calculating Beam Deflections and Slopes Ques

 

It’s take home question 2 parts about ( Principle of Virtual Work for Calculating Beam Deflections and Slopes )

it will be similar to the attached files. it’s going to be in 30 hours. and i have an hour to submit the answer.

English homework help

There are many resume writing tips available on the Internet but these tips are often worthless unless you use them to your advantage. One way you can improve your chances of landing your dream job is to put together a resume that will convince your potential employer that you are the right person for the job. One of the best resume writing tips is to use a professional resume writing service. Use these resume writing tips (https://skillhub.com/resume-writing-service) that are proven to work:

Use a professional address. Signing up for a resume writing tips service is a waste of money because they don’t have access to the databases that most employers use. Therefore, even if they have some resume writing tips that might help you with your job application, these tips won’t do anything for your actual application. Importance: This might sound too simple but it really is worth stressing because the misuse of an unprofessional address will get you ignored 76% of the time during job applications. So, just ditch that boring email address you’ve been using ever since grade school because it’s not going to get you anywhere.

Follow the rules. One of the best resume writing tips out there is to always follow the simple rules which are usually laid out in a resume template. Resume templates are basically resume examples which you can use to create a custom resume and then apply for a job using it. You will be able to learn more resume building information and tips from other articles by following the links below.