Models
- class pysphalt.models.AsphaltModulusPredictor[source]
A predictive model for estimating the dynamic modulus (|E*|) of Brazilian asphalt mixtures using artificial neural networks (ANNs).
This class implements an ANN-based approach to predict the dynamic modulus of asphalt mixtures, tailored to the specific characteristics and compositions typical of Brazilian formulations. It takes into account factors such as aggregate type, asphalt binder content, and environmental conditions, as described in the referenced study.
The model is trained on empirical data from Brazilian asphalt mixture tests, aiming to provide accurate and reliable modulus predictions for use in pavement design and analysis.
- Methods:
predict(inputs): Accepts input parameters of the asphalt mixture and returns the predicted dynamic modulus.
- Example:
>>> from pysphalt.models import AsphaltModulusPredictor >>> predictor = AsphaltModulusPredictor() >>> sample_inputs = [ [10.0, 300.0, 75.0, 15.0, 60.0, 40.0, 25.0, 5.0, 12.0], [12.0, 350.0, 70.0, 10.0, 65.0, 35.0, 30.0, 4.5, 14.0], [11.0, 320.0, 80.0, 20.0, 55.0, 45.0, 22.0, 6.0, 11.0], ] >>> modulus = predictor.predict(sample_inputs)
- predict(X: List[AsphaltMixInputs]) float[source]
Predicts the dynamic modulus of an asphalt mixture based on the given input parameters.
Parameters
- XAsphaltMixInputs or array-like of shape (n_samples, n_features)
Input data for prediction. Each instance of AsphaltMixInputs represents one sample of asphalt mixture, with the following features:
frequency (float): Frequency in Hz.
binder_dynamic_shear_modulus (float): Binder dynamic shear modulus at 20°C in psi.
binder_phase_angle (float): Binder phase angle at 20°C in degrees.
aggregates_passing_sieve_200 (float): Aggregates passing sieve No. 200 in percentage.
retained_material_sieve_4 (float): Cumulative retained material on sieve No. 4 in percentage.
retained_material_sieve_8 (float): Cumulative retained material on sieve 8” in percentage.
retained_material_sieve_3_4 (float): Cumulative retained material on sieve 3/4” in percentage.
air_voids (float): Air voids in percentage.
effective_binder_volume (float): Effective binder volume in percentage.
Returns
- y_predndarray of shape (n_samples,)
The predicted dynamic modulus (|E*|) values for each asphalt mixture sample.
Examples
>>> predictor = AsphaltModulusPredictor() >>> inputs = AsphaltMixInputs(frequency=1.0, binder_dynamic_shear_modulus=500, ...) >>> y_pred = predictor.predict([inputs])