Skip to main content
  • Home
  • Development
  • Documentation
  • Donate
  • Operational login
  • Browse the archive

swh logo
SoftwareHeritage
Software
Heritage
Archive
Features
  • Search

  • Downloads

  • Save code now

  • Add forge now

  • Help

https://github.com/chunleili/nonNewtonCode
22 December 2023, 13:46:53 UTC
  • Code
  • Branches (2)
  • Releases (0)
  • Visits
    • Branches
    • Releases
    • HEAD
    • refs/heads/cmake-fix
    • refs/heads/main
    No releases to show
  • a715a39
  • /
  • Tools
  • /
  • PartioViewer
  • /
  • PartioViewer.h
Raw File Download
Take a new snapshot of a software origin

If the archived software origin currently browsed is not synchronized with its upstream version (for instance when new commits have been issued), you can explicitly request Software Heritage to take a new snapshot of it.

Use the form below to proceed. Once a request has been submitted and accepted, it will be processed as soon as possible. You can then check its processing state by visiting this dedicated page.
swh spinner

Processing "take a new snapshot" request ...

To reference or cite the objects present in the Software Heritage archive, permalinks based on SoftWare Hash IDentifiers (SWHIDs) must be used.
Select below a type of object currently browsed in order to display its associated SWHID and permalink.

  • content
  • directory
  • revision
  • snapshot
origin badgecontent badge Iframe embedding
swh:1:cnt:84a465184b20e6543d37732735219e60fe949be8
origin badgedirectory badge Iframe embedding
swh:1:dir:f962141be68f43cdcf20bcc4b71f232fb0520a5a
origin badgerevision badge
swh:1:rev:645503d647115a39bb73e84b424a72611e535fa2
origin badgesnapshot badge
swh:1:snp:8d20debb81c7f94e8fdd49c807a95451a3476519

This interface enables to generate software citations, provided that the root directory of browsed objects contains a citation.cff or codemeta.json file.
Select below a type of object currently browsed in order to generate citations for them.

  • content
  • directory
  • revision
  • snapshot
Generate software citation in BibTex format (requires biblatex-software package)
Generating citation ...
Generate software citation in BibTex format (requires biblatex-software package)
Generating citation ...
Generate software citation in BibTex format (requires biblatex-software package)
Generating citation ...
Generate software citation in BibTex format (requires biblatex-software package)
Generating citation ...
Tip revision: 645503d647115a39bb73e84b424a72611e535fa2 authored by chunleili on 08 December 2023, 02:41:15 UTC
Add files via upload
Tip revision: 645503d
PartioViewer.h
#pragma once

#include <string>
#include "SPlisHSPlasH/TriangleMesh.h"
#include "extern/partio/src/lib/Partio.h"
#include "GUI/PartioViewer_GUI_Base.h"
#include "extern/AntTweakBar/include/AntTweakBar.h"

namespace SPH
{
	struct Fluid
	{
		Partio::ParticlesDataMutable* partioData;
		std::vector<unsigned int> selectedParticles;
		std::vector<unsigned int> visibleParticles;
		std::string inputFile;
		std::string currentFile;
		unsigned int posIndex;
		unsigned int m_colorField;
		float m_renderMinValue;
		float m_renderMaxValue;
		unsigned int m_colorMapType;
	};

	struct Boundary
	{
		TriangleMesh mesh;
		std::vector<Vector3r> x0;
		Vector3f t;
		Matrix3f R;
		bool isWall;
		Vector4f color;
	};

	class PartioViewer
	{
	protected:
		int m_frameIndex;
		int m_startFrame;
		int m_endFrame;
		int m_firstRBIndex;
		unsigned int m_numberOfRigidBodies;
		Real m_particleRadius;
		Eigen::Vector3f m_planeNormal;
		Eigen::Vector3f m_planePoint;
		bool m_renderSequence;
		bool m_renderVideo;
		bool m_overWrite;
		std::string m_ffmpegPath;
		std::string m_rbDataFile;
		FILE *m_ffmpegPipe;
		unsigned int m_width;
		unsigned int m_height;
		unsigned int m_fps;
		static FILE *m_jpegFile;
		bool m_doPause;
		std::vector<Fluid> m_fluids;
		std::vector<Boundary> m_boundaries;		
		std::string m_exePath, m_outPath;		
		bool m_usePlane;
		bool m_useRBData;
		Eigen::AlignedBox3f m_fluidBoundingBox;	
		std::vector<unsigned char> m_image;
		PartioViewer_GUI_Base *m_gui;
		int m_argc;
		char **m_argv;
		std::string m_defaultColorFieldName;
		float m_defaultRenderMinValue;
		float m_defaultRenderMaxValue;
		unsigned int m_defaultColorMapType;
		std::vector<std::vector<float>> m_scalarField;

		void loadObj(const std::string &filename, TriangleMesh &mesh, const Vector3r &scale);
		bool readPartioFile(const std::string &fileName, Partio::ParticlesDataMutable* &partioData, unsigned int &posIndex, const bool printInfo = false);
		bool readRigidBodyData(std::string fileName, const bool first = false);
		unsigned int getFrameIndexFromFile(const std::string &inputFileName);
		std::string convertFileName(const std::string &inputFileName, const std::string currentFrame);
		std::string zeroPadding(const unsigned int number, const unsigned int length);
		bool imagesExist(const unsigned int frameIndex);
		void addImageDataToVideo();
		void saveImageData();
		static void outputJpg(unsigned char oneByte);
		static void saveImage(const std::string &fileName, const void *pixels, unsigned int width, unsigned int height);
		void initGUI();

	public:
		PartioViewer();
		~PartioViewer();

		int run(int argc, char **argv);
		bool setFrame(const unsigned int index);
		void reset();
		void updateBoundingBox();
		bool updateData();
		void updateScalarField();

		void particleInfo();
		bool nextFrame();
		bool prevFrame();
		void saveFrame();
		void generateSequence();
		void generateVideo();
		void timeStep();

		std::vector<float>& getScalarField(const unsigned int i) { return m_scalarField[i]; }
		
		int getFrameIndex() const { return m_frameIndex; }
		bool getUsePlane() const { return m_usePlane; }
		void setUsePlane(bool val);
		Eigen::Vector3f getPlaneNormal() const { return m_planeNormal; }
		void setPlaneNormal(const Eigen::Vector3f &val);
		Eigen::Vector3f getPlanePoint() const { return m_planePoint; }
		void setPlanePoint(const Eigen::Vector3f &val);
		std::vector<SPH::Fluid>& getFluids() { return m_fluids; }
		std::vector<SPH::Boundary>& getBoundaries() { return m_boundaries; }
		Real getParticleRadius() const { return m_particleRadius; }
		void setParticleRadius(Real val) { m_particleRadius = val; }
		Eigen::AlignedBox3f getFluidBoundingBox() const { return m_fluidBoundingBox; }
		void setFluidBoundingBox(const Eigen::AlignedBox3f &val) { m_fluidBoundingBox = val; }
		std::string getExePath() const { return m_exePath; }
		void setExePath(const std::string &val) { m_exePath = val; }
		void setStartFrame(const int val) { m_startFrame = val; }
		int getStartFrame() const { return m_startFrame; }
		void setEndFrame(const int val) { m_endFrame = val; }
		int getEndFrame() const { return m_endFrame; }
		void setFPS(const int val) { m_fps = val; }
		int getFPS() const { return m_fps; }
		int getArgc() const { return m_argc; }
		char ** getArgv() const { return m_argv; }
		unsigned int getWidth() const { return m_width; }
		unsigned int getHeight() const { return m_height; }
		bool getPause() const { return m_doPause; }
		void setPause(bool val) { m_doPause = val; }
	};
}

back to top

Software Heritage — Copyright (C) 2015–2025, The Software Heritage developers. License: GNU AGPLv3+.
The source code of Software Heritage itself is available on our development forge.
The source code files archived by Software Heritage are available under their own copyright and licenses.
Terms of use: Archive access, API— Content policy— Contact— JavaScript license information— Web API