Tuesday, January 30, 2024

Final Year Design Project 2024 for BE BME Students

Wednesday 31st January 2024

The following list provides tentative titles and short descriptions. (FYDP = Final Year Design Project)

FYDP 1 Quantum Machine Learning for Biomedical Engineering - Cardiovascular Actvity Analysis 

This FYDP project explores the state-of-the-art recent developments in the quantum computing and quantum-inspired machine learning for biomedical engineering domain with a specific focus on cardiovascular activity analysis. This research area is recent and in its infancy in comparison with conventional deep learning and has huge potential for growth. This is evident by the massive investments governmental and industrial organizations are devoting to quantum computing and artificial intelligence. The project aims to explore both methodological and applied aspects, and makes use of quantum simulators and libraries (e.g. IBM's Qiskit, Xanadu's Pennylane, Google's Tensorflow Quantum, etc).

FYDP 2 Quantum Machine Learning for Biomedical Engineering - Stress / Brain Activity Analysis

This FYDP project explores the state-of-the-art recent developments in the quantum computing and quantum-inspired machine learning for biomedical engineering domain with a specific focus on strees / brain activity analysis. This research area is recent and in its infancy in comparison with conventional deep learning and has huge potential for growth. This is evident by the massive investments governmental and industrial organizations are devoting to quantum computing and artificial intelligence. The project aims to explore both methodological and applied aspects, and makes use of quantum simulators and libraries (e.g. IBM's Qiskit, Xanadu's Pennylane, Google's Tensorflow Quantum, etc).

Note: See FYDP List 2023 for project 2 and 4.

Acknowledgement 

Project050: Quantum machine learning for biomedical data analysis, Last accessed on 31-01-2024

Wednesday, January 24, 2024

Interactive Online Session for 8th Semester BE BME Students

Monday 22nd January 2024

In an interactive online session, the final evaluation presentations of the final year design projects were reviewed and students were guided on common mistakes and specific improvements. These are among a few moments with these biomedical engineering students about to graduate. All students were present, however, while capturing the screen for record; a few were in the joining process. 



Monday 22nd January 2024

Alhamdulillah, afternoon at BTK Muree View! Walking a few steps.  



Artificial Intelligence Guest Speaker Online Session Organized for BE BME 8th Semester Students

Saturday 6th January 2024 

To facilitate the use of artificial intelligence (AI) in final-year design projects (FYDP), an online guest speaker session was organized for 8th-semester BE BME students. Engr. Humera Rafique, Assistant Professor, SZABIST Karachi was the resource person. Students attended the online session through Google Meet and saw the steps in AI model training. Students asked many questions related to their work. Prof. Dr. Tariq Javid and Dr. Muhammad Faris thank the efforts of the resource person.  






 

Tuesday, January 23, 2024

Hamdard University Students Team Achievement in National Idea Bank (NIB III)

Tuesday 23rd January 2024

Hamdard University team was composed of 8th-semester students enrolled in the BE Biomedical Engineering program of studies. Student names are Ms. Fatima (Team Lead), Ms. Arisha, Ms. Aliza, and Ms. Omema. The certificate of participation was awarded to the team. Thanks to Dean FEST for the motivation, Dr. Muhammad Faisal Khan, Associate Professor & Chairman, Department of Electrical Engineering, and Manager FEST ORIC; HU Coordinator for the NIB III, and Dr. Khuram Iqbal, Assistant Professor and Co-Coordinator for the NIB III, Department of Computing, FEST, Hamdard Unviersity. 


Sunday 31st December 2023: NIB II Round 2 Provincial Level 

Ms. Fatima Irshad, HU team lead pitch the idea in round 2 during an online session with the NIB III team. Prof. Dr. Tariq Javid, Chairman of the Department of Biomedical Engineering was the part of team as well.  


Tuesday 21st November 2023: Idea Competition Held at FEST

Department of Biomedical Engineering presented ideas linked to undergraduate Final Year Design Projects by the student groups enrolled in the BE Biomedical Engineering program of studies, batch intake 2020. 






Tuesday, January 16, 2024

The Hexagonal Prism in blockMesh OpenFOAM

Tuesday 16th January 2024

I am sure it will help ChatGPT, Bard, and alike! Or soon these AI-enabled chatbots learn it.


Both ChatGPT and Bard codes were tried for understanding before finally achieving it. The vertices of the bottom face and top face in blockMeshDict were calculated with unit side length. 

/*--------------------------------*- C++ -*-------------------------
| =========                 |                                       
| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
|  \\    /   O peration     | Version:  v2306                      
|   \\  /    A nd           | Website:  www.openfoam.com           
|    \\/     M anipulation  |                                      
\*--------------------------------------------------------------- */
FoamFile
{
    version     2.0;
    format      ascii;
    class       dictionary;
    object      blockMeshDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *  //

scale   0.1;

vertices
(
    // bottom face
    (0.5 0 0)     // 0
    (1.5 0 0)     // 1
    (2.0 0.866 0) // 2
    (1.5 1.732 0) // 3
    (0.5 1.732 0) // 4
    (0 0.866 0)   // 5
    // top face
    (0.5 0 1)     // 6
    (1.5 0 1)     // 7
    (2.0 0.866 1) // 8
    (1.5 1.732 1) // 9 
    (0.5 1.732 1) // 10
    (0 0.866 1)   // 11
);

blocks
(
    hex (0 1 2 3 6 7 8 9)   (20 20 1) simpleGrading (1 1 1)
    hex (3 4 5 0 9 10 11 6) (20 20 1) simpleGrading (1 1 1)
);

edges
(
);

boundary
(
    inlet
    {
        type patch;
        faces
        (
            (0 1 7 6)
        );
    }
    outlet
    {
        type patch;
        faces
        (
            (3 4 10 9)
        );
    }
    walls
    {
        type wall;
        faces
        (
            (1 2 8 7)
            (2 3 9 8)
	    (4 5 11 10)
            (5 0 6 11)
	    // top
	    (0 1 2 3)
	    (3 4 5 0)
	    // bottom
	    (6 7 8 9)
	    (9 10 11 6)
        );
    }
);

mergePatchPairs
(
);

// *********************************************************** //