mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
21 lines
514 B
C++
21 lines
514 B
C++
#pragma once
|
|
|
|
#include "penetration.hpp"
|
|
|
|
namespace ace {
|
|
namespace vehicledamage {
|
|
namespace penetration {
|
|
class longrod : public base_penetration_model {
|
|
public:
|
|
using base_penetration_model::base_penetration_model;
|
|
|
|
bool process() override;
|
|
protected:
|
|
float _working_length();
|
|
|
|
private:
|
|
const static float material_coefficients[][5];
|
|
};
|
|
}
|
|
}
|
|
}; |