Hello, I am Yahya Efe Kuruçay.
I am a computer engineering student at Akdeniz University.
This repo contains the programming assignments I have completed in my Akdeniz University physics lectures.
The assignments are written in Java.
For more information about the content of the assignments and the technologies I used, please see the README files (generally there are pdf's in the folders) for the respective assignments.
I share this repo to leave a digital footprint on the internet. I don't know why, I just like it.
If you have any questions, please feel free to contact me at my website.
Thank you. 2024.
Bu program temel fizik hareket denklemlerini hesaplayan basit bir simülatördür.
- Düz hareket hesaplamaları
- Serbest düşme simülasyonu
- Düşey atış simülasyonu
- Hız, mesafe, zaman hesaplamaları
- Anlık hız
- Alınan yol
- Maksimum yükseklik (düşey atış için)
- Yere düşme süresi
Program çalıştırıldığında menüden istenen hareket tipi seçilir:
- Düz Hareket: Sabit ivmeli hareket hesapları
- Serbest Düşme: Belirli yükseklikten bırakılan cismin hareketi
- Düşey Atış: Yukarı doğru fırlatılan cismin hareketi
- Çıkış: Programı sonlandırır
- Hız: v = v0 + at
- Mesafe: x = v0t + (1/2)at²
- Maksimum yükseklik: h = v0²/2g
- Düşme süresi: t = 2v0/g
mvn clean compile
mvn exec:java -Dexec.mainClass="com.physics.Main"Yahya Efe Kuruçay