{"id":23213374,"url":"https://github.com/nagipragalathan/sfd_source_sphere","last_synced_at":"2025-07-03T09:06:24.240Z","repository":{"id":191349483,"uuid":"684431279","full_name":"NagiPragalathan/SFD_source_sphere","owner":"NagiPragalathan","description":"SFD Source Sphere is a project focused on simulating and visualizing fluid dynamics using spherical source fields. This project uses computational techniques to model fluid behavior and visualizes the results in a 3D environment.","archived":false,"fork":false,"pushed_at":"2024-06-20T16:01:59.000Z","size":2418,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-05T12:45:25.296Z","etag":null,"topics":["3dvisualization","fluiddynamics","sfdsourcesphere"],"latest_commit_sha":null,"homepage":"https://sfd-source-sphere.vercel.app","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/NagiPragalathan.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-08-29T05:36:58.000Z","updated_at":"2024-06-20T16:03:02.000Z","dependencies_parsed_at":"2024-06-21T08:55:48.578Z","dependency_job_id":"2236b1fb-6bda-49c3-bb2c-fc834be8d809","html_url":"https://github.com/NagiPragalathan/SFD_source_sphere","commit_stats":null,"previous_names":["nagipragalathan/sfd_source_sphere"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/NagiPragalathan/SFD_source_sphere","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NagiPragalathan%2FSFD_source_sphere","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NagiPragalathan%2FSFD_source_sphere/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NagiPragalathan%2FSFD_source_sphere/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NagiPragalathan%2FSFD_source_sphere/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/NagiPragalathan","download_url":"https://codeload.github.com/NagiPragalathan/SFD_source_sphere/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NagiPragalathan%2FSFD_source_sphere/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":263296443,"owners_count":23444489,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["3dvisualization","fluiddynamics","sfdsourcesphere"],"created_at":"2024-12-18T19:17:26.858Z","updated_at":"2025-07-03T09:06:24.214Z","avatar_url":"https://github.com/NagiPragalathan.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# SFD Source Sphere\n\nSFD Source Sphere is a project focused on simulating and visualizing fluid dynamics using spherical source fields. This project uses computational techniques to model fluid behavior and visualizes the results in a 3D environment.\n\n![Output Image](https://github.com/NagiPragalathan/SFD_source_sphere/blob/main/Screenshot%202024-06-20%20213026.png?raw=true)\n\n## Features\n\n- **Fluid Dynamics Simulation**: Simulate fluid dynamics using spherical source fields.\n- **3D Visualization**: Visualize the simulation results in a 3D environment.\n- **Interactive Controls**: Adjust simulation parameters and observe changes in real-time.\n- **High-Performance Computing**: Leverage efficient algorithms for high-performance simulations.\n\n## Technologies Used\n\n- **Backend**: Python\n- **Visualization**: Three.js\n- **Computational Libraries**: NumPy, SciPy\n\n## Installation and Setup\n\n### Prerequisites\n\n- Python 3.x\n- Node.js\n- npm (Node Package Manager) or yarn\n\n### Steps\n\n1. **Clone the Repository**\n    \n    bash\n    \n    Copy code\n    \n    `git clone https://github.com/NagiPragalathan/SFD_source_sphere.git\n    cd SFD_source_sphere` \n    \n2. **Backend Setup**\n    \n    - Install Python dependencies:\n        \n        bash\n        \n        Copy code\n        \n        `pip install -r requirements.txt` \n        \n3. **Frontend Setup**\n    \n    - Navigate to the frontend directory:\n        \n        bash\n        \n        Copy code\n        \n        `cd frontend` \n        \n    - Install Node.js dependencies:\n        \n        bash\n        \n        Copy code\n        \n        `npm install` \n        \n4. **Run the Development Server**\n    \n    - Start the backend server:\n        \n        bash\n        \n        Copy code\n        \n        `python main.py` \n        \n    - Start the frontend server:\n        \n        bash\n        \n        Copy code\n        \n        `cd frontend\n        npm start` \n        \n5. **Access the Application**\n    \n    Open your browser and navigate to `http://localhost:3000` for the frontend and `http://localhost:8000` for the backend.\n    \n\n## Project Structure\n\narduino\n\nCopy code\n\n```\nSFD_source_sphere/\n├── backend/\n│   ├── simulations/\n│   │   ├── __init__.py\n│   │   ├── fluid_simulation.py\n│   ├── app.py\n│   ├── config.py\n│   ├── requirements.txt\n│   └── README.md\n├── frontend/\n│   ├── public/\n│   ├── src/\n│   │   ├── components/\n│   │   ├── pages/\n│   │   ├── services/\n│   │   ├── App.js\n│   │   ├── index.js\n│   │   └── styles/\n│   ├── package.json\n│   └── README.md\n├── main.py\n└── README.md\n``` \n\n## Usage\n\n- **Dashboard**: Access the main dashboard to control and visualize fluid simulations.\n- **Simulation Controls**: Adjust parameters such as source strength, viscosity, and others to observe their effects on fluid behavior.\n- **3D Visualization**: Interact with the 3D visualization to better understand fluid dynamics.\n\n## Contribution\n\nContributions to the SFD Source Sphere project are welcome! If you would like to contribute, please fork the repository and submit a pull request with your changes.\n\n## License\n\nThis project is licensed under the MIT License. See the [LICENSE](https://chatgpt.com/c/LICENSE) file for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnagipragalathan%2Fsfd_source_sphere","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnagipragalathan%2Fsfd_source_sphere","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnagipragalathan%2Fsfd_source_sphere/lists"}