Load Calculation of Hydrodynamic Journal Bearing

조회 수: 12 (최근 30일)
Adwait Mahajan
Adwait Mahajan 2023년 12월 30일
편집: Adwait Mahajan 2023년 12월 30일
I have the pressure field generated in circumferencial and axial direction. But can't crack the double integration part. Can anybody help me with a code for that? It would be big help.
  댓글 수: 2
Dyuman Joshi
Dyuman Joshi 2023년 12월 30일
Is theta_prime related to theta? If yes, then how?
Are p and R constants?
Adwait Mahajan
Adwait Mahajan 2023년 12월 30일
편집: Adwait Mahajan 2023년 12월 30일
R is a constant. p is a function of theta_prime and z.
theta_prime = theta - alpha
where, alpha is the attitude angle of the bearing.

댓글을 달려면 로그인하십시오.

채택된 답변

Hassaan
Hassaan 2023년 12월 30일
편집: Hassaan 2023년 12월 30일
you could use integral2 or dblquad function:
% Define the pressure function, replace this with your actual function
pressure = @(theta_prime, z) cos(theta_prime); % Example function
% Integration bounds
theta_prime_min = 0;
theta_prime_max = 2 * pi;
z_min = 0;
z_max = 1; % Replace with the actual length L of the bearing
% Radius R is a constant, replace with the actual radius of the bearing
R = 1;
% Radial load Wr calculation using double integration
Wr = integral2(@(theta_prime, z) pressure(theta_prime, z) .* R .* cos(theta_prime), ...
z_min, z_max, theta_prime_min, theta_prime_max);
% Tangential load Wt calculation using double integration
Wt = integral2(@(theta_prime, z) pressure(theta_prime, z) .* R .* sin(theta_prime), ...
z_min, z_max, theta_prime_min, theta_prime_max);
disp(Wr);
4.5699
disp(Wt);
2.2245
Replace the pressure function and the bounds with your actual function and bearing dimensions.
------------------------------------------------------------------------------------------------------------------------------------------------
If you find the solution helpful and it resolves your issue, it would be greatly appreciated if you could accept the answer. Also, leaving an upvote and a comment are also wonderful ways to provide feedback.
  댓글 수: 1
Adwait Mahajan
Adwait Mahajan 2023년 12월 30일
Thanks a lot. I was trying to implement Simpson's integral rule. But this makes my work way easier.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Mathematics에 대해 자세히 알아보기

제품


릴리스

R2023a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by